Re: [HACKERS] symbol ':'

From: "Thomas G(dot) Lockhart" <lockhart(at)alumni(dot)caltech(dot)edu>
To: Michael Meskes <meskes(at)topsystem(dot)de>
Cc: PostgreSQL Hacker <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: [HACKERS] symbol ':'
Date: 1998-03-26 15:18:34
Message-ID: 351A71CA.C2F20AE3@alumni.caltech.edu
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

> Where is this symbol used? I see now way to check for correct syntax
> when ":a" can mean something else that the C variable a.

It's an allowed operator symbol assigned to a little-used math
operation. You can disallow it for embedded sql if you need to. Another
possibility though is to disallow it as an operator _unless_ it is
inside parentheses. I did a similar thing in gram.y in the BETWEEN/AND
parsing to allow the boolean "AND" operator to be used on the right side
of BETWEEN/AND. But maybe indicator variables are allowed to show up
inside expressions too, so this wouldn't work...

btw, I've been thinking about changing another operator symbol, ";",
because of the obvious parsing ambiguities with the SQL end of statement
symbol. We could change both ":" and ";" operators for v6.4??

- Tom

In response to

  • symbol ':' at 1998-03-26 12:45:58 from Michael Meskes

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Michael Meskes 1998-03-26 15:54:42 Re: [HACKERS] symbol ':'
Previous Message Massimo Dal Zotto 1998-03-26 15:16:55 Re: [HACKERS] patch for memory overrun on Linux(i386)