Fix 02117_show_create_table_system

This commit is contained in:
Robert Schulze 2023-04-27 11:47:35 +00:00
parent 096667be45
commit 5b179ecd02
No known key found for this signature in database
GPG Key ID: 26703B55FB13728A

View File

@ -281,7 +281,12 @@ CREATE TABLE system.functions
`alias_to` String,
`create_query` String,
`origin` Enum8('System' = 0, 'SQLUserDefined' = 1, 'ExecutableUserDefined' = 2),
`description` String
`description` String,
`syntax` String,
`arguments` String,
`returned_value` String,
`examples` String,
`categories` String
)
ENGINE = SystemFunctions
COMMENT 'SYSTEM TABLE is built on the fly.'