Excluded GENERATED ALWAYS VIRTUAL columns from mutable columns
This commit is contained in:
parent
b23388d2fd
commit
a56447d1fc
4 changed files with 99 additions and 4 deletions
|
|
@ -29,7 +29,8 @@ SELECT
|
|||
col.DATA_TYPE)
|
||||
) AS "dataType.Name",
|
||||
IF (col.DATA_TYPE = 'enum', 'enum', 'base') AS "dataType.Kind",
|
||||
col.COLUMN_TYPE LIKE '%unsigned%' AS "dataType.IsUnsigned"
|
||||
col.COLUMN_TYPE LIKE '%unsigned%' AS "dataType.IsUnsigned",
|
||||
col.EXTRA LIKE '%VIRTUAL GENERATED%' AS "column.isGenerated"
|
||||
FROM INFORMATION_SCHEMA.tables AS t
|
||||
INNER JOIN
|
||||
information_schema.columns AS col
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue