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=2521f9e75e910cec13591c1af76a69ea7f96109e;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 6838db86eca..0fcdabd7877 100644 --- a/doc/src/sgml/ddl.sgml +++ b/doc/src/sgml/ddl.sgml @@ -5922,7 +5922,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 (