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
|
--
\set VERBOSITY terse
--
create type ctype3 as (fred integer, jim numeric);
do $$
begin
if current_setting('server_version_num')::integer >= 110000 then
execute 'create domain dtype as ctype3 check((VALUE).jim is not null)';
else
execute 'create type dtype as (fred integer, jim numeric)';
end if;
end;
$$;
create type ctype2 as (thingy text, wotsit integer);
create type ctype as (foo text, bar ctype2, baz dtype);
create table tdata (
intcol integer,
textcol text,
charcol char(32),
varcharcol varchar(32),
compcol ctype,
dcompcol dtype
);
insert into tdata
values (1, 'row 1', 'padded with blanks', 'not padded', ('x',('y',1111),(111,11.1)), (11,1.1)),
(2, 'row 2', 'padded with blanks', 'not padded', ('x',('y',2222),(222,22.2)), (22,2.2)),
(3, 'row 3', 'padded with blanks', 'not padded', ('x',('y',3333),(333,33.3)), (33,3.3));
create function tf1() returns setof tdata language pllua as $f$
for i = 1,4 do
coroutine.yield({ intcol = i,
textcol = "row "..i,
charcol = "padded with blanks",
varcharcol = "not padded",
compcol = { foo = "x",
bar = { thingy = "y", wotsit = i*1111 },
baz = { fred = i*111, jim = i*11.1 }
},
dcompcol = { fred = i*11, jim = i*1.1 }
})
end
$f$;
select * from tf1();
--
-- various checks of type handling
--
do language pllua $$ print(pgtype(nil,'ctype3')(1,2)) $$;
do language pllua $$ print(pgtype(nil,'ctype3')({1,2})) $$;
do language pllua $$ print(pgtype(nil,'ctype3')(true,true)) $$;
do language pllua $$ print(pgtype(nil,'ctype3')("1","2")) $$;
do language pllua $$ print(pgtype(nil,'ctype3')({fred=1,jim=2})) $$;
do language pllua $$ print(pgtype(nil,'ctype3')({fred=1,jim={}})) $$;
do language pllua $$ print(pgtype(nil,'ctype3')({fred=1,jim=nil})) $$;
--do language pllua $$ print(pgtype(nil,'dtype')({fred=1,jim=nil})) $$;
create function tf2() returns setof tdata language pllua as $f$
local t = spi.execute("select * from tdata")
for i,v in ipairs(t) do coroutine.yield(v) end
$f$;
select * from tf2();
do language pllua $$ print(pgtype.ctype3()) $$;
-- ensure detoasting of nested composites works right
do language pllua $f$
for r in spi.rows("select * from tdata") do
print(r.intcol, r.compcol.foo, r.compcol.bar.wotsit, r.dcompcol.jim)
end
$f$;
do language pllua $$
a = pgtype.array.integer({{{1,2}},{{3,4}},{{5,6}}},3,1,2)
print(a)
print(#a,#(a[1]),#(a[1][1]))
print(a[3][1][2],a[1][1][1])
$$;
do language pllua $$ print(pgtype.int4range(123,456)) $$;
do language pllua $$ print(pgtype.int4range()) $$;
do language pllua $$ print(pgtype.int4range(123,456,'(]')) $$;
do language pllua $$ print(pgtype.int4range(nil,456,'(]')) $$;
do language pllua $$ print(pgtype.int4range(nil,nil)) $$;
do language pllua $$ print(pgtype.int4range(123,nil)) $$;
do language pllua $$ print(pgtype.int4range('[12,56]')) $$;
do language pllua $$
local r1,r2,r3 = pgtype.numrange('[12,56]'),
pgtype.numrange('empty'),
pgtype.numrange('(12,)')
print(r1.lower,r1.upper,r1.lower_inc,r1.upper_inc,r1.lower_inf,r1.upper_inf,r1.isempty)
print(r2.lower,r2.upper,r2.lower_inc,r2.upper_inc,r2.lower_inf,r2.upper_inf,r2.isempty)
print(r3.lower,r3.upper,r3.lower_inc,r3.upper_inc,r3.lower_inf,r3.upper_inf,r3.isempty)
$$;
create type myenum as enum ('TRUE', 'FALSE', 'FILE_NOT_FOUND');
create function pg_temp.f1(a myenum) returns text language pllua as $$ print(a,type(a)) return a $$;
select pg_temp.f1(x) from unnest(enum_range(null::myenum)) x;
create function pg_temp.f2() returns myenum language pllua as $$ return 'FILE_NOT_FOUND' $$;
select pg_temp.f2();
-- domains
create domain mydom1 as varchar(3);
create domain mydom2 as varchar(3) check (value in ('foo','bar','baz'));
create domain mydom3 as varchar(3) not null;
create domain mydom4 as varchar(3) not null check (value in ('foo','bar','baz'));
create function pg_temp.f3(a mydom1) returns void language pllua as $$
print(pgtype(nil,1):name(), type(a), #a)
$$;
select pg_temp.f3('foo') union all select pg_temp.f3('bar ');
create function pg_temp.f4d1(a text) returns mydom1 language pllua as $$
return a
$$;
select pg_temp.f4d1('foo');
select pg_temp.f4d1('bar ');
select pg_temp.f4d1('toolong');
select pg_temp.f4d1(null);
create function pg_temp.f4d2(a text) returns mydom2 language pllua as $$
return a
$$;
select pg_temp.f4d2('bar ');
select pg_temp.f4d2('bad');
select pg_temp.f4d2('toolong');
select pg_temp.f4d2(null);
create function pg_temp.f4d3(a text) returns mydom3 language pllua as $$
return a
$$;
select pg_temp.f4d3('bar ');
select pg_temp.f4d3('toolong');
select pg_temp.f4d3(null);
create function pg_temp.f4d4(a text) returns mydom4 language pllua as $$
return a
$$;
select pg_temp.f4d4('bar ');
select pg_temp.f4d4('bad');
select pg_temp.f4d4('toolong');
select pg_temp.f4d4(null);
-- array coercions
-- relabeltype path
do language pllua $$
local a = pgtype.array.varchar("foo","bar")
local b = pgtype.array.text(a)
print(b)
$$;
-- cast function path
do language pllua $$
local a = pgtype.array.boolean(false,true)
local b = pgtype.array.text(a)
print(b)
$$;
-- IO path
do language pllua $$
local a = pgtype.array.integer(10,20)
local b = pgtype.array.text(a)
print(b)
$$;
-- array typmod coercions
create temp table atc (a varchar(10)[], b char(10)[]);
do language pllua $$
local a = pgtype.array.varchar('foo','bar','value_too_long_for_type')
local b = pgtype.atc(a,nil)
$$;
do language pllua $$
local a = pgtype.array.bpchar('foo','bar','value ')
local b = pgtype.atc(nil,a)
print(b)
$$;
-- composite type construction edge cases
do language pllua $$
print(pgtype.ctype3())
print(pgtype.ctype3(nil))
$$;
do language pllua $$
print(pgtype.ctype3(1)) -- error
$$;
do language pllua $$
print(pgtype.ctype3(1,2))
$$;
--end
|