unfathomable comment in psqlscan.l

Started by Robert Haasabout 16 years ago3 messageshackers
Jump to latest
#1Robert Haas
robertmhaas@gmail.com

While reviewing Pavel's patch for variable quoting in psql, I came
upon the following comment in psqlscan.l:

/*
* The variable value is just emitted without any
* further examination. This is consistent with the
* pre-8.0 code behavior, if not with the way that
* variables are handled outside backslash commands.
*/

I cannot figure out for the life of me what this is referring to. It
seems to date back to 2004, when the old psql lexer was rewritten to
use flex. But I can't figure out what "further examination" someone
might have expected, or how it's inconsistent with the how things are
"handled outside backslash commands".

Help?

...Robert

#2Tom Lane
tgl@sss.pgh.pa.us
In reply to: Robert Haas (#1)
Re: unfathomable comment in psqlscan.l

Robert Haas <robertmhaas@gmail.com> writes:

While reviewing Pavel's patch for variable quoting in psql, I came
upon the following comment in psqlscan.l:

/*
* The variable value is just emitted without any
* further examination. This is consistent with the
* pre-8.0 code behavior, if not with the way that
* variables are handled outside backslash commands.
*/

I cannot figure out for the life of me what this is referring to.

At the other place where :foo is expanded, the value is pushed for
re-scanning; thus for example ":bar" within the variable value
might be further expanded as a reference to some other variable.
Inside backslash commands we don't do that but just take the value
literally.

regards, tom lane

#3Robert Haas
robertmhaas@gmail.com
In reply to: Tom Lane (#2)
Re: unfathomable comment in psqlscan.l

On Tue, Jan 26, 2010 at 2:12 PM, Tom Lane <tgl@sss.pgh.pa.us> wrote:

Robert Haas <robertmhaas@gmail.com> writes:

While reviewing Pavel's patch for variable quoting in psql, I came
upon the following comment in psqlscan.l:

        /*
         * The variable value is just emitted without any
         * further examination.  This is consistent with the
         * pre-8.0 code behavior, if not with the way that
         * variables are handled outside backslash commands.
         */

I cannot figure out for the life of me what this is referring to.

At the other place where :foo is expanded, the value is pushed for
re-scanning; thus for example ":bar" within the variable value
might be further expanded as a reference to some other variable.
Inside backslash commands we don't do that but just take the value
literally.

Ah, makes sense. Thanks.

...Robert