v14-0013-adapt-property-graph-to-more-intuitive-titles.patch
application/octet-stream
Filename: v14-0013-adapt-property-graph-to-more-intuitive-titles.patch
Type: application/octet-stream
Part: 1
Patch
Same data as JSON:
GET /api/v1/attachments/:id/patch
the parsed metadata as JSON — format, series position, per-file stats; never the diff bytes.
API reference →
Format: format-patch
Series: patch v14-0013
Subject: adapt property graph to more-intuitive titles
| File | + | − |
|---|---|---|
| src/bin/psql/describe.c | 5 | 0 |
From 5f90a7356751331ebba4a5a3da71e7cab4f52af3 Mon Sep 17 00:00:00 2001
From: Junwang Zhao <zhjwpku@gmail.com>
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