Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/test/regress/output/table_functions.source
Original file line number Diff line number Diff line change
Expand Up @@ -2627,7 +2627,7 @@ FROM sessionize_static(
),
'1 minute' ) AS sessionize(id integer, "time" timestamp, sessionnum integer)
ORDER BY id, time; -- FAIL, double qualified
ERROR: a column definition list is only allowed for functions returning "record"
ERROR: a column definition list is redundant for a function with OUT parameters
LINE 10: '1 minute' ) AS sessionize(id integer, "time" timestamp,...
^
-- Describe with qualification fails
Expand All @@ -2642,7 +2642,7 @@ FROM sessionize_dynamic(
),
'1 minute' ) AS sessionize(id integer, "time" timestamp, sessionnum integer)
ORDER BY id, time; -- FAIL, double qualified
ERROR: a column definition list is only allowed for functions returning "record"
ERROR: a column definition list is redundant for a function with OUT parameters
LINE 10: '1 minute' ) AS sessionize(id integer, "time" timestamp,...
^
-- Otherwise results should match
Expand Down
4 changes: 2 additions & 2 deletions src/test/regress/output/table_functions_optimizer.source
Original file line number Diff line number Diff line change
Expand Up @@ -2628,7 +2628,7 @@ FROM sessionize_static(
),
'1 minute' ) AS sessionize(id integer, "time" timestamp, sessionnum integer)
ORDER BY id, time; -- FAIL, double qualified
ERROR: a column definition list is only allowed for functions returning "record"
ERROR: a column definition list is redundant for a function with OUT parameters
LINE 10: '1 minute' ) AS sessionize(id integer, "time" timestamp,...
^
-- Describe with qualification fails
Expand All @@ -2643,7 +2643,7 @@ FROM sessionize_dynamic(
),
'1 minute' ) AS sessionize(id integer, "time" timestamp, sessionnum integer)
ORDER BY id, time; -- FAIL, double qualified
ERROR: a column definition list is only allowed for functions returning "record"
ERROR: a column definition list is redundant for a function with OUT parameters
LINE 10: '1 minute' ) AS sessionize(id integer, "time" timestamp,...
^
-- Otherwise results should match
Expand Down