Details
-
Task
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
None
Description
This is a part of dj's GSoC project.
Make the parser support
CREATE FUNCTION ... RETURNS TABLE table_name (column type [, column type ...])
|
<<function body>>
|
This is just about supporting it in the parser. The statement should
- be parsed successfully
- Instead of creating an SP, return an ER_NOT_SUPPORTED_YET error.
Attachments
Issue Links
- is part of
-
MDEV-8100 Table functions (aka SQL functions returning tables)
-
- Stalled
-
This task required making some changes under sf_tail in sql_yacc, which has been done. Currently the input is parsing successfully and parser is returning ER_NOT_SUPPORTED_YET error for now, which will be removed later.