Re: [BUGS] Factorial operator gets parser error in psql.

2000-07-07 Thread Tom Lane
"Robert B. Easter" <[EMAIL PROTECTED]> writes: > SELECT 3 !; > ERROR: parser error at or near "" > SELECT 3 ! > ; > Works ok. > Parser error occurs if the ending ; is on the same line. Curious that select 3 ! ; works differently from select 3 ! ; It appears that psql str

Re: [BUGS] Factorial operator gets parser error in psql.

2000-07-07 Thread Bruce Momjian
Confirmed. That is really weird. > > SELECT 3 !; > ERROR: parser error at or near "" > > SELECT 3 ! > ; > Works ok. > > Parser error occurs if the ending ; is on the same line. > > -- > Robert > -- Bruce Momjian| http://candle.pha.pa.us

[BUGS] Factorial operator gets parser error in psql.

2000-07-07 Thread Robert B. Easter
SELECT 3 !; ERROR: parser error at or near "" SELECT 3 ! ; Works ok. Parser error occurs if the ending ; is on the same line. -- Robert