mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Part of MDEV-10134 Add full support for DEFAULT
Print default values for BLOB's. This is a part commit for automatic changes to make the real commit smaller. All changes here are related to that we now print DEFAULT NULL for blob and text fields, like we do for all other fields.
This commit is contained in:
committed by
Sergei Golubchik
parent
3aadba1557
commit
6c173324ff
@ -28,7 +28,7 @@ SHOW CREATE TABLE test.t1;
|
||||
Table Create Table
|
||||
t1 CREATE TABLE `t1` (
|
||||
`a` int(11) NOT NULL,
|
||||
`blob_column` longblob,
|
||||
`blob_column` longblob DEFAULT NULL,
|
||||
`vchar_column` varchar(100) DEFAULT NULL,
|
||||
PRIMARY KEY (`a`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1
|
||||
|
Reference in New Issue
Block a user