Re: [HACKERS] pgbench - allow to store select results into variables
Fabien COELHO <coelho@cri.ensmp.fr>
From: Fabien COELHO <coelho@cri.ensmp.fr>
To: Alvaro Herrera <alvherre@2ndquadrant.com>
Cc: Pavel Stehule <pavel.stehule@gmail.com>,
Tatsuo Ishii <ishii@sraoss.co.jp>,
rafia.sabih@enterprisedb.com, Michael Paquier <michael.paquier@gmail.com>,
Tom Lane <tgl@sss.pgh.pa.us>,
Amit Langote <Langote_Amit_f8@lab.ntt.co.jp>,
Robert Haas <robertmhaas@gmail.com>,
PostgreSQL Developers <pgsql-hackers@postgresql.org>
Date: 2018-11-17T10:25:32Z
Lists: pgsql-hackers
Attachments
- pgbench-into-22.patch (text/x-diff) patch
Hello Alvaro, Thanks for having a look at this patch. >> Think of one initialization followed by two appends: >> >> SELECT 1 AS x \cset >> SELECT 2 \; SELECT 3 AS y \cset >> SELECT 4 \; SELECT 5 \; SELECT 6 AS z \gset >> >> In the end, we must have the full 6 queries >> >> "SELECT 1 AS x \; SELECT 2 \; SELECT 3 AS y \; SELECT 4 \; SELECT 5 \; SELECT 6 AS z" >> >> and know that we want to set variables from queries 1, 3 and 6 and ignore >> the 3 others. > > I'm not sure I understand this. Why is the "SELECT 2" ignored? Because there is no \cset nor \gset attached to it, so the command does not say to put the result into variables. > (I can see why the 4 and 5 are ignored: they are not processed by gset). Same thing with SELECT 2, which is followed by "\;", meaning execute and that's all. > What exactly does \cset do? I thought "SELECT 2 \; SELECT 3 AS y \cset" > would search for the \; and process *both* queries. No, "\cset" does not end the compound query, only ";" or "\gset" do that. \cset separates queries (like \;) and adds the fact that the just preceding query result is to be put into variables when received. \cset = \; + store result into variables \gset = ; + store result into variables From a performance point of view, the point is to be able to use compound queries which reduce the number of round trips so should impact latency. > I think the doc addition should be split. Indeed, as the current version is confusing. Attached an attempt at clarifying the documentation on this point. The doc is split as suggested, descriptions and examples are specific to each presented case. -- Fabien.
Commits
-
pgbench: Remove \cset
- 25ee70511ec2 12.0 landed
-
pgbench: add \cset and \gset commands
- 6260cc550b0e 12.0 landed
-
Adjust pgbench to allow non-ASCII characters in variable names.
- 9d36a386608d 11.0 landed
-
Refactor script execution state machine in pgbench.
- 12788ae49e19 10.0 cited
-
Allow empty queries in pgbench.
- 6471045230f5 10.0 cited