- "latest/postgres/create_view-281.sql": "create view tt201v as\nselect\n ('2022-12-01'::date + '1 day'::interval) at time zone 'UTC' as atz,\n extract(day from now()) as extr,\n (now(), '1 day'::interval) overlaps\n (current_timestamp(2), '1 day'::interval) as o,\n 'foo' is normalized isn,\n 'foo' is nfkc normalized isnn,\n normalize('foo') as n,\n normalize('foo', nfkd) as nfkd,\n overlay('foo' placing 'bar' from 2) as ovl,\n overlay('foo' placing 'bar' from 2 for 3) as ovl2,\n position('foo' in 'foobar') as p,\n substring('foo' from 2 for 3) as s,\n substring('foo' similar 'f' escape '#') as ss,\n substring('foo' from 'oo') as ssf, -- historically-permitted abuse\n trim(' ' from ' foo ') as bt,\n trim(leading ' ' from ' foo ') as lt,\n trim(trailing ' foo ') as rt,\n trim(E'\\\\000'::bytea from E'\\\\000Tom\\\\000'::bytea) as btb,\n trim(leading E'\\\\000'::bytea from E'\\\\000Tom\\\\000'::bytea) as ltb,\n trim(trailing E'\\\\000'::bytea from E'\\\\000Tom\\\\000'::bytea) as rtb,\n CURRENT_DATE as cd,\n (select * from CURRENT_DATE) as cd2,\n CURRENT_TIME as ct,\n (select * from CURRENT_TIME) as ct2,\n CURRENT_TIME (1) as ct3,\n (select * from CURRENT_TIME (1)) as ct4,\n CURRENT_TIMESTAMP as ct5,\n (select * from CURRENT_TIMESTAMP) as ct6,\n CURRENT_TIMESTAMP (1) as ct7,\n (select * from CURRENT_TIMESTAMP (1)) as ct8,\n LOCALTIME as lt1,\n (select * from LOCALTIME) as lt2,\n LOCALTIME (1) as lt3,\n (select * from LOCALTIME (1)) as lt4,\n LOCALTIMESTAMP as lt5,\n (select * from LOCALTIMESTAMP) as lt6,\n LOCALTIMESTAMP (1) as lt7,\n (select * from LOCALTIMESTAMP (1)) as lt8,\n CURRENT_CATALOG as ca,\n (select * from CURRENT_CATALOG) as ca2,\n CURRENT_ROLE as cr,\n (select * from CURRENT_ROLE) as cr2,\n CURRENT_SCHEMA as cs,\n (select * from CURRENT_SCHEMA) as cs2,\n CURRENT_USER as cu,\n (select * from CURRENT_USER) as cu2,\n USER as us,\n (select * from USER) as us2,\n SESSION_USER seu,\n (select * from SESSION_USER) as seu2,\n SYSTEM_USER as su,\n (select * from SYSTEM_USER) as su2",
0 commit comments