Michael Meskes wrote:
>
> On Mon, Feb 08, 1999 at 01:15:09PM -0500, Bruce Momjian wrote:
> > We don't reserve the type names as keywords, and because they can create
> > their own types, it wouldn't make sense.
>
> I don't exactly understand that. For instance the 'int' keyword will still
> be reserved, isn't it?
>
Just tested:
hannu=> create table int(int int);
CREATE
Though:
hannu=> create table int4(int4 int4);
ERROR: TypeCreate: type int4 already defined
So it's probably not reserved ;)
--------------
Hannu