From 5ccbcbdbb7df508d4d57cf24ced189e15bc6601e Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Fri, 17 Jul 2026 15:45:30 +0200 Subject: [PATCH] doc: Fix SQL quoting in example The identifier "order" needs to be quoted, just like in the example a little bit earlier. Author: Thom Brown Discussion: https://www.postgresql.org/message-id/CAA-aLv4xyAaxm8vq5LEhznh-SGphs4wUAGC6Vpas%2B1hHZzzD7A%40mail.gmail.com --- doc/src/sgml/ddl.sgml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/sgml/ddl.sgml b/doc/src/sgml/ddl.sgml index 3f3869df44e..19fa5d5fda8 100644 --- a/doc/src/sgml/ddl.sgml +++ b/doc/src/sgml/ddl.sgml @@ -5902,7 +5902,7 @@ CREATE PROPERTY GRAPH myshop VERTEX TABLES ( products LABEL product, customers LABEL customer LABEL person PROPERTIES (name), - orders LABEL order, + orders LABEL "order", employees LABEL employee LABEL person PROPERTIES (employee_name AS name) ) EDGE TABLES ( -- 2.47.3