From: | Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com> |
---|---|
To: | Robert Haas <robertmhaas(at)gmail(dot)com> |
Cc: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, Alvaro Herrera <alvherre(at)commandprompt(dot)com>, PostgreSQL Hackers <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: quoting psql varible as identifier |
Date: | 2010-01-21 19:25:50 |
Message-ID: | 162867791001211125i4dfe57f3h6d87bcc2c6d45bde@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
2010/1/21 Robert Haas <robertmhaas(at)gmail(dot)com>:
> On Thu, Jan 21, 2010 at 12:53 PM, Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com> wrote:
>> add to state structure field like lexer_error. This field will be
>> checked before execution
>> it could be ugly for metacommands, there will be lot of new checks :(
>
> Eh? The only places where we should need new tests are the places
> that check PQExpBufferBroken() now - there are only 6 calls to that
> function in src/bin/psql and not all of them need to be changed. The
> places that do need to be changed will need to be modified to check
> PQExpBufferBroken() || lexer_coughed_up_a_lung.
no, it is only 6 calls because we don't check psql_scan_slash_option result.
When we don't allow escaping syntax in slash statement, then it could be simple.
we have to do some like:
if buffer_is_broken(..)
report "out of memory"
else if global_error != true
do ....
end if
Pavel
>
> It should be possible to do this pretty simply, I think.
>
> ...Robert
>
From | Date | Subject | |
---|---|---|---|
Next Message | Dave Page | 2010-01-21 19:31:03 | Re: [HACKERS] 8.5 vs. 9.0 |
Previous Message | Robert Haas | 2010-01-21 19:08:04 | Re: Partitioning syntax |