Unary % operator is broken in current sources

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-hackers(at)postgreSQL(dot)org
Subject: Unary % operator is broken in current sources
Date: 1999-03-21 01:34:09
Message-ID: 5282.921980049@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

These used to work:

regression=> select %f.f1 FROM FLOAT8_TBL f;
ERROR: parser: parse error at or near "%"
regression=> select f.f1 % FROM FLOAT8_TBL f;
ERROR: parser: parse error at or near "from"

This is causing the float8 regress test to fail.

I suspect this has to do with Bruce's recent hacking on operator
associativity.

regards, tom lane

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Bruce Momjian 1999-03-21 02:07:30 Re: [HACKERS] 6.5 Features list
Previous Message Bruce Momjian 1999-03-21 01:16:52 Re: [HACKERS] min() and max() causing aborts