You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: test/regression/expected/duckdb_recycle.out
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,7 @@ EXPLAIN SELECT count(*) FROM ta;
50
50
-- Not allowed in a transaction
51
51
BEGIN;
52
52
CALL duckdb.recycle_ddb();
53
-
ERROR: (PGDuckDB/pgduckdb_recycle_ddb_cpp) Executor Error: (PGDuckDB/::PreventInTransactionBlock) duckdb.recycle_ddb() cannot run inside a transaction block
53
+
ERROR: duckdb.recycle_ddb() cannot run inside a transaction block
54
54
END;
55
55
-- Nor in a function
56
56
CREATE OR REPLACE FUNCTION f() RETURNS void
@@ -64,7 +64,7 @@ END;
64
64
$$;
65
65
SET duckdb.force_execution = false;
66
66
SELECT * FROM f();
67
-
ERROR: (PGDuckDB/pgduckdb_recycle_ddb_cpp) Executor Error: (PGDuckDB/::PreventInTransactionBlock) duckdb.recycle_ddb() cannot be executed from a function
67
+
ERROR: duckdb.recycle_ddb() cannot be executed from a function
0 commit comments