Query string length for schema in characters in addition to bytes
This commit is contained in:
parent
dc72bb8696
commit
1ee0c2f3bb
|
@ -144,6 +144,7 @@ function mixinDiscovery(MySQL) {
|
||||||
sql = paginateSQL('SELECT table_schema AS "owner",' +
|
sql = paginateSQL('SELECT table_schema AS "owner",' +
|
||||||
' table_name AS "tableName", column_name AS "columnName",' +
|
' table_name AS "tableName", column_name AS "columnName",' +
|
||||||
' data_type AS "dataType",' +
|
' data_type AS "dataType",' +
|
||||||
|
' character_maximum_length AS "length",' +
|
||||||
' character_octet_length AS "dataLength",' +
|
' character_octet_length AS "dataLength",' +
|
||||||
' numeric_precision AS "dataPrecision",' +
|
' numeric_precision AS "dataPrecision",' +
|
||||||
' numeric_scale AS "dataScale",' +
|
' numeric_scale AS "dataScale",' +
|
||||||
|
@ -156,6 +157,7 @@ function mixinDiscovery(MySQL) {
|
||||||
sql = paginateSQL('SELECT table_schema AS "owner",' +
|
sql = paginateSQL('SELECT table_schema AS "owner",' +
|
||||||
' table_name AS "tableName", column_name AS "columnName",' +
|
' table_name AS "tableName", column_name AS "columnName",' +
|
||||||
' data_type AS "dataType",' +
|
' data_type AS "dataType",' +
|
||||||
|
' character_maximum_length AS "length",' +
|
||||||
' character_octet_length AS "dataLength",' +
|
' character_octet_length AS "dataLength",' +
|
||||||
' numeric_precision AS "dataPrecision",' +
|
' numeric_precision AS "dataPrecision",' +
|
||||||
' numeric_scale AS "dataScale",' +
|
' numeric_scale AS "dataScale",' +
|
||||||
|
|
Loading…
Reference in New Issue