Re: BUG #17842: Adding a qual to a working query gets bogus syntax error

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: buschmann(at)nidsa(dot)net
Cc: pgsql-bugs(at)lists(dot)postgresql(dot)org
Subject: Re: BUG #17842: Adding a qual to a working query gets bogus syntax error
Date: 2023-03-14 16:20:46
Message-ID: 2692255.1678810846@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

PG Bug reporting form <noreply(at)postgresql(dot)org> writes:
> During refactoring our application I got a bogus syntax error when adding a
> simple where-clause to a working query.

My guess is that this:

> ('0'||split_part(split_part(nline,'(',2),')',1))::smallint as nlen

sometimes produces a string that fails to cast to smallint, which you
accidentally don't notice because it never gets evaluated for troublesome
values of nline --- until you add the "nlen > 0" condition. There isn't
anything in your query that prevents that from being evaluated fairly
early.

This isn't a bug, or at least you have provided no data that would
motivate (or indeed allow) anyone else to poke into it more closely.

regards, tom lane

In response to

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message PG Bug reporting form 2023-03-14 18:00:03 BUG #17843: Writing uninitialised data in logtape/buffile
Previous Message PG Bug reporting form 2023-03-14 15:48:29 BUG #17842: Adding a qual to a working query gets bogus syntax error