Re: [HACKERS] initdb problem and operator question

Thomas Lockhart <lockhart@alumni.caltech.edu>

From: "Thomas G. Lockhart" <lockhart@alumni.caltech.edu>
To: Michael Meskes <meskes@topsystem.de>
Cc: PostgreSQL Hacker <pgsql-hackers@postgresql.org>
Date: 1998-04-28T02:58:20Z
Lists: pgsql-hackers
> I'd like to know if the operator "->" is in use for something. I'd 
> like to use it for C variables to be able to do something like this:
> 
> select name into :structpointer->name
> 
> If it is used though I have to disable this feature.

Not currently used. afaik this syntax wasn't allowed in the Ingres
embedded SQL. Do other ones allow it? Perhaps you could implement it in
your scanner as a special case? That way, extra spaces could be used to
allow "->" to continue to be a potential Postgres operator...

                       - Tom