Skip to content

Commit 6336a0e

Browse files
committed
Merge branch 'INDATA-152' of github.com:supabase/postgres into INDATA-152
* 'INDATA-152' of github.com:supabase/postgres: Revert "test(pg_regress): update expected output for pg15 plv8"
2 parents 2c3acd2 + b2e170b commit 6336a0e

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'
98
create schema v;
10-
ERROR: current transaction is aborted, commands ignored until end of transaction block
119
-- create a function to perform some JavaScript operations
1210
create function v.multiply_numbers(a integer, b integer)
1311
returns integer
1412
language plv8
1513
as $$
1614
return a * b;
1715
$$;
18-
ERROR: current transaction is aborted, commands ignored until end of transaction block
1916
select
2017
v.multiply_numbers(3, 4);
21-
ERROR: current transaction is aborted, commands ignored until end of transaction block
18+
multiply_numbers
19+
------------------
20+
12
21+
(1 row)
22+
2223
drop schema v cascade;
23-
ERROR: current transaction is aborted, commands ignored until end of transaction block
2424
ROLLBACK;

0 commit comments

Comments
 (0)