1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
|
--
\set VERBOSITY terse
--
-- Test of SPI-related functionality.
create temp table tsttab (
id integer primary key,
a integer,
b text,
c numeric,
d date
);
insert into tsttab(id, a,b,c,d)
values (1, 1,'foo',2.34,'2017-01-01'),
(2, 2,'bar',2.34,'2017-02-01'),
(3, 3,'baz',2.34,'2017-03-01'),
(4, 4, 'fred',2.34,'2017-04-01'),
(5, 5,'jim',2.34,'2017-05-01'),
(6, 6,'sheila',2.34,'2017-06-01');
-- basics
do language pllua $$
local tbl
tbl = spi.execute([[ select 1 as a, 'foo'::text as b ]])
print(#tbl,tbl[1],type(tbl[1]))
print(tbl[1].a,tbl[1].b)
tbl = spi.execute([[ select i, 'foo'::text as b from generate_series(1,10000) i ]])
print(#tbl,tbl[1],tbl[10000])
tbl = spi.execute([[ select * from tsttab order by id ]])
for i = 1,#tbl do print(tbl[i]) end
$$;
-- statements
do language pllua $$
local stmt,tbl
stmt = spi.prepare([[ select * from tsttab where id=$1 ]], {"integer"})
tbl = stmt:execute(1)
print(tbl[1])
-- __call metamethod
tbl = stmt(6)
print(tbl[1])
stmt = spi.prepare([[ select * from tsttab where id = ANY ($1) order by id ]],
{pgtype.array.integer})
tbl = stmt:execute(pgtype.array.integer(1,nil,3))
print(#tbl,tbl[1],tbl[2])
-- type deduction:
stmt = spi.prepare([[ select 1 + $1 as a, pg_typeof($1) ]])
tbl = stmt:execute(1)
print(#tbl,tbl[1])
$$;
-- iterators
do language pllua $$
for r in spi.rows([[ select * from tsttab order by id ]]) do
print(r)
end
stmt = spi.prepare([[ select * from tsttab where id = ANY ($1) ]],
{pgtype.array.integer})
for r in stmt:rows(pgtype.array.integer(1,nil,3)) do
print(r)
end
$$;
do language pllua $$
local c = spi.newcursor('curs1')
local stmt = spi.prepare([[ select * from tsttab order by id for update ]])
c:open(stmt)
for r in c:rows() do
print(r)
if r.id == 3 then
spi.execute([[ update tsttab set c = c + 10 where current of curs1 ]])
end
end
c:move(0, 'absolute')
for r in c:rows() do
print(r)
end
for r in spi.rows([[ select * from tsttab order by id ]]) do
print(r)
end
spi.execute([[ update tsttab set c = c - 10 where id=3 ]])
c:close()
$$;
-- cursors
begin;
declare foo scroll cursor for select * from tsttab order by id;
do language pllua $$
local c = spi.findcursor("foo")
local tbl
tbl = c:fetch(1,'next')
print(#tbl,tbl[1])
tbl = c:fetch(2,'forward') -- same as 'next'
print(#tbl,tbl[1],tbl[2])
tbl = c:fetch(1,'absolute')
print(#tbl,tbl[1])
tbl = c:fetch(4,'relative')
print(#tbl,tbl[1])
tbl = c:fetch(1,'prior') -- same as 'backward'
print(#tbl,tbl[1])
tbl = c:fetch(1,'backward')
print(#tbl,tbl[1])
print(c:isopen())
spi.execute("close foo")
print(c:isopen())
$$;
commit;
do language pllua $$
local c = spi.newcursor("bar")
c:open([[ select * from tsttab where id >= $1 order by id ]], 3)
local tbl
tbl = c:fetch(1,'next')
print(#tbl,tbl[1])
for k,v in ipairs(spi.execute([[ select name, statement from pg_cursors ]])) do
print(v.name, v.statement)
end
c:close()
for k,v in ipairs(spi.execute([[ select name, statement from pg_cursors ]])) do
print(v.name, v.statement)
end
c:open([[ select * from tsttab where id < $1 order by id desc ]], 3)
tbl = c:fetch(3,'next')
print(#tbl,tbl[1],tbl[2])
for k,v in ipairs(spi.execute([[ select name, statement from pg_cursors ]])) do
print(v.name, v.statement)
end
c:close()
$$;
-- cursor options on statement
do language pllua $$
local stmt = spi.prepare([[ select * from tsttab where id >= $1 order by id ]],
{"integer"}, { scroll = true, fast_start = true, generic_plan = true })
local stmt2 = spi.prepare([[ select * from tsttab where id >= $1 order by id ]],
{"integer"}, { no_scroll = true })
local c = stmt:getcursor(4)
local tbl
tbl = c:fetch(3,'next')
print(#tbl,tbl[1],tbl[2])
c:move(0,'absolute')
tbl = c:fetch(3,'next')
print(#tbl,tbl[1],tbl[2])
for k,v in ipairs(spi.execute([[ select name, statement, is_scrollable from pg_cursors ]])) do
print(v.name, v.statement, v.is_scrollable)
end
c:close()
c = stmt2:getcursor(4)
local c2 = spi.findcursor(c:name())
print(c:name(), rawequal(c,c2))
for k,v in ipairs(spi.execute([[ select name, statement, is_scrollable from pg_cursors ]])) do
print(v.name, v.statement, v.is_scrollable)
end
c:close()
$$;
-- check missing params are OK
do language pllua $$
local stmt = spi.prepare([[ select * from generate_series($1::integer, $3) i ]]);
print(stmt:argtype(1):name())
print(type(stmt:argtype(2)))
print(stmt:argtype(3):name())
$$;
-- check execute_count
do language pllua $$
local q = [[ select * from generate_series($1::integer,$2) i ]]
local r1 = spi.execute_count(q, 2, 1, 5)
print(#r1)
local s = spi.prepare(q, {"integer","integer"})
r1 = s:execute_count(3,1,5)
print(#r1)
$$;
-- cursors as parameters and return values
create function do_fetch(c refcursor) returns void language pllua as $$
while true do
local r = (c:fetch())[1]
if r==nil then break end
print(r)
end
$$;
create function do_exec(q text, n text) returns refcursor language pllua as $$
local s = spi.prepare(q)
local c = spi.newcursor(n)
return c:open(s):disown()
$$;
begin;
declare mycur cursor for select * from tsttab order by id;
select do_fetch('mycur');
commit;
begin;
select do_exec('select * from tsttab order by id desc', 'mycur2');
do language pllua $$ collectgarbage() $$; -- check cursor stays open
fetch all from mycur2;
commit;
--end
|