From 5f90a7356751331ebba4a5a3da71e7cab4f52af3 Mon Sep 17 00:00:00 2001 From: Junwang Zhao Date: Fri, 7 Feb 2025 14:57:52 +0000 Subject: [PATCH v14 13/15] adapt property graph to more-intuitive titles --- src/bin/psql/describe.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c index 51c3cba3bfc..bf6498909b2 100644 --- a/src/bin/psql/describe.c +++ b/src/bin/psql/describe.c @@ -4257,6 +4257,9 @@ listTables(const char *tabtypes, const char *pattern, bool verbose, bool showSys else if (showForeign) pg_log_error("Did not find any foreign tables named \"%s\".", pattern); + else if (showPropGraphs) + pg_log_error("Did not find any property graphs named \"%s\".", + pattern); else /* should not get here */ pg_log_error_internal("Did not find any ??? named \"%s\".", pattern); @@ -4277,6 +4280,8 @@ listTables(const char *tabtypes, const char *pattern, bool verbose, bool showSys pg_log_error("Did not find any sequences."); else if (showForeign) pg_log_error("Did not find any foreign tables."); + else if (showPropGraphs) + pg_log_error("Did not find any property graphs."); else /* should not get here */ pg_log_error_internal("Did not find any ??? relations."); } -- 2.39.5