From: Peter Eisentraut Date: Fri, 17 Jul 2026 13:45:30 +0000 (+0200) Subject: doc: Fix SQL quoting in example X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5ccbcbdbb7df508d4d57cf24ced189e15bc6601e;p=thirdparty%2Fpostgresql.git 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 --- 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 (