-
-
Couldn't load subscription status.
- Fork 585
Closed
dolthub/go-mysql-server
#2458Labels
bugSomething isn't workingSomething isn't workingcorrectnessWe don't return the same result as MySQLWe don't return the same result as MySQLsqlIssue with SQLIssue with SQL
Description
When a CREATE TABLE DDL contains a COMMENT clause the comment ends up being dropped and is not visible in the information schema, as exemplified here:
create table foo(x int) comment 'foo table'
;
select table_comment
from information_schema.tables
where table_name = 'foo'
;This appears to work fine for table comments, but I didn't check other object types.
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingcorrectnessWe don't return the same result as MySQLWe don't return the same result as MySQLsqlIssue with SQLIssue with SQL