Skip to content

Commit

Permalink
Revert "return resultset rather than table"
Browse files Browse the repository at this point in the history
This reverts commit c265b5f.
  • Loading branch information
philerooski committed Jul 18, 2024
1 parent c265b5f commit 2202e0f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
CREATE OR REPLACE PROCEDURE copy_into_table_from_stage(
target_table VARCHAR
)
RETURNS RESULTSET
RETURNS TABLE ()
LANGUAGE SQL
as
$$
Expand All @@ -29,6 +29,6 @@ DECLARE
MATCH_BY_COLUMN_NAME = CASE_SENSITIVE
);
BEGIN
RETURN res;
RETURN TABLE(res);
END;
$$;

0 comments on commit 2202e0f

Please sign in to comment.