"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
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
SELECT 3 !;
ERROR: parser error at or near ""
SELECT 3 !
;
Works ok.
Parser error occurs if the ending ; is on the same line.
--
Robert