Skip to content

Commit bd512ff

Browse files
committed
test(pg_regress): update expected output for pg15 plv8
1 parent 5a76416 commit bd512ff

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

nix/tests/expected/z_15_plv8.out

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@ with the Supabase PG17 image
55
BEGIN;
66
set client_min_messages = warning;
77
create extension if not exists plv8;
8+
ERROR: could not load library "/nix/store/3jfxgxa5rms47ba9nzjjdxn4cwmrsfnn-postgresql-and-plugins-15.14/lib/plv8-3.2.3.so": dlopen(/nix/store/3jfxgxa5rms47ba9nzjjdxn4cwmrsfnn-postgresql-and-plugins-15.14/lib/plv8-3.2.3.so, 0x000A): symbol not found in flat namespace '__ZN2v87Isolate18SetOOMErrorHandlerEPFvPKcRKNS_10OOMDetailsEE'
89
create schema v;
10+
ERROR: current transaction is aborted, commands ignored until end of transaction block
911
-- create a function to perform some JavaScript operations
1012
create function v.multiply_numbers(a integer, b integer)
1113
returns integer
1214
language plv8
1315
as $$
1416
return a * b;
1517
$$;
18+
ERROR: current transaction is aborted, commands ignored until end of transaction block
1619
select
1720
v.multiply_numbers(3, 4);
18-
multiply_numbers
19-
------------------
20-
12
21-
(1 row)
22-
21+
ERROR: current transaction is aborted, commands ignored until end of transaction block
2322
drop schema v cascade;
23+
ERROR: current transaction is aborted, commands ignored until end of transaction block
2424
ROLLBACK;

0 commit comments

Comments
 (0)