Re: [DOCS] syntax error with example sql of createtable

2005-01-06 Thread Tom Lane
Honda Shigehiro <[EMAIL PROTECTED]> writes: > A word "table" in SQL "INSERT INTO table VALUES (3);" is reserved. > So renaming or quoting are needed to avoid an error. Fixed, thanks. regards, tom lane ---(end of broadcast)-

Re: [DOCS] syntax error with example sql of createtable

2005-01-06 Thread Honda Shigehiro
Hello, Thank you for fixing. I notice that there is also example which cause a syntax error like "create table" in example of below URLs: http://developer.postgresql.org/docs/postgres/sql-release-savepoint.html http://developer.postgresql.org/docs/postgres/sql-savepoint.html A word "table" i

Re: [DOCS] syntax error with example sql of createtable

2005-01-05 Thread Bruce Momjian
Thanks. Changed to 'array_int'. --- Honda Shigehiro wrote: > Hello, > > I got a error when execute below command in > http://developer.postgresql.org/docs/postgres/sql-createtable.html > > postgres=# CREATE TABLE arra

[DOCS] syntax error with example sql of createtable

2005-01-05 Thread Honda Shigehiro
Hello, I got a error when execute below command in http://developer.postgresql.org/docs/postgres/sql-createtable.html postgres=# CREATE TABLE array (vector int[][]); ERROR: syntax error at or near "array" at character 14 LINE 1: CREATE TABLE array (vector int[][]); ^