Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix top query regression tests on PG 12,13
On PG 12, 13, the internal return instruction in the following function: ``` CREATE OR REPLACE FUNCTION add(int, int) RETURNS INTEGER AS $$ BEGIN return (select $1 + $2); END; $$ language plpgsql; ``` Is stored as SELECT (select expr1 + expr2) On PG 14 onward it's stored just as SELECT (expr1 + expr2)
- Loading branch information