Return-Path: avi Received: by postgres.Berkeley.EDU (5.61/1.29) id AA27693; Wed, 9 Jun 93 09:38:23 -0700 Date: Wed, 9 Jun 93 09:38:23 -0700 Message-Id: <9306091638.AA27693@postgres.Berkeley.EDU> From: Subject: Re: postquel data type To: postgres@postgres.berkeley.edu Sender: pg_adm@postgres.berkeley.edu > The problem with the following: > > * create OBJECT (name = char16, source = postquel, object = postquel) \g > > Query sent to backend is "create OBJECT (name = char16, source = postquel, object = postquel) " > WARN:Jun 8 11:43:36:parser: syntax error at or near "postquel" > > > is that the type "postquel" is not supported. In addition, postquel is a reserved word, which is why you get the error message you see rather than "type name lookup of postquel failed". You will have to use some other name for your type. avi