[DOCS] FAQ on oids is out of date.

2005-01-05 Thread Kris Jurka
http://www.postgresql.org/files/documentation/faqs/FAQ.html#4.16 The FAQ on oids is out of date. It claims that they are globally unique and that no one has ever rolled over the oid counter. This should be changed to actively discourage their use. Kris Jurka ---(end

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[][]); ^