背景:我正在为 PL/pgSQL 函数编写我的第一个pgTAP测试用例,并从 psql 测试脚本开始。没问题,但我在psql variables上遇到了一点麻烦。
在我的测试脚本中,我首先将相当多的测试数据转储到相关表中,然后使用由序列生成的主键引用数据。我发现能够创建一个包含主键的变量很方便。这就是我要找的:
scalasb=> \set the_id (select currval('id_data_id_seq'))
scalasb=> \echo :the_id
54754
scalasb=>
但这就是我得到的:
scalasb=> \set the_id (select currval('id_data_id_seq'))
scalasb=> \echo :the_id
(selectcurrval('id_data_id_seq'))
scalasb=>
我有一个解决方法(请参见下面的示例),但看起来 psql 变量不是这项工作的正确工具。或者它们只是我在 Oracle sqlplus绑定变量中使用的不同......
所以我的问题是:如何将 SQL 查询的返回值绑定到 psql 脚本中的变量中?
我正在使用 9.1 开发 linux。
-- this is a simplified example to illustrate the problem
begin;
create table id_data(id serial primary key, data text not null);
create or replace function get_text(p_id bigint)
returns text
as $$
declare
v_data constant text := data from id_data where id = p_id;
begin
return v_data;
end;
$$ language plpgsql;
insert into id_data(data) values('lorem ipsum');
-- this works correctly but is a rather verbose (especially when one have
-- more of these, in the same query/function)
select get_text((select currval('id_data_id_seq')));
-- instead I'd like to set the id to a variable and use that but this
-- seems to be impossible with psql, right ?
\set the_id (select currval('id_data_id_seq'))
\echo First try: :the_id
--select get_text(:the_id); -- this will fail
-- this works and reveals psql variables' true nature - they are just a
-- textual replacements
\set the_id '(select currval(\'id_data_id_seq\'))'
\echo Second try: :the_id
select get_text(:the_id);
rollback;