Skip to content

Commit

Permalink
Add cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
silent-observer committed Dec 13, 2024
1 parent 3d89daa commit 03335d8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/test/regress/expected/function_extensions.out
Original file line number Diff line number Diff line change
Expand Up @@ -595,3 +595,4 @@ SELECT * FROM t8_function_scan ORDER BY a;
335 | USA
(6 rows)

DROP TABLE t8_function_scan;
Original file line number Diff line number Diff line change
Expand Up @@ -596,3 +596,4 @@ SELECT * FROM t8_function_scan ORDER BY a;
335 | USA
(6 rows)

DROP TABLE t8_function_scan;
1 change: 1 addition & 0 deletions src/test/regress/sql/function_extensions.sql
Original file line number Diff line number Diff line change
Expand Up @@ -306,4 +306,5 @@ CREATE TABLE t8_function_scan AS SELECT country_id+1 AS a, country FROM get_coun
INSERT INTO t8_function_scan SELECT country_id+2 AS a, country FROM get_country();
-- should have 6 rows without any NULL entries
SELECT * FROM t8_function_scan ORDER BY a;
DROP TABLE t8_function_scan;

0 comments on commit 03335d8

Please sign in to comment.