diff options
author | gluh@mysql.com/eagle.(none) <> | 2007-09-20 13:54:46 +0500 |
---|---|---|
committer | gluh@mysql.com/eagle.(none) <> | 2007-09-20 13:54:46 +0500 |
commit | 6b81174cdec5ef444fadd1726f71412a3a0d9fb1 (patch) | |
tree | 2d2b37a24b870584b73222819553ad3805d7cff3 /mysql-test/r/alter_table.result | |
parent | 56c927e69622f24ddd04b9fcd76c4f02a3bb7674 (diff) | |
download | mariadb-git-6b81174cdec5ef444fadd1726f71412a3a0d9fb1.tar.gz |
Bug#27747 database metadata doesn't return sufficient column default info
added get_field_default_value() function which obtains default value from the field
(used in store_create_info() & get_schema_column_record() functions)
Diffstat (limited to 'mysql-test/r/alter_table.result')
-rw-r--r-- | mysql-test/r/alter_table.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/alter_table.result b/mysql-test/r/alter_table.result index f24a1788404..95c652055ec 100644 --- a/mysql-test/r/alter_table.result +++ b/mysql-test/r/alter_table.result @@ -54,7 +54,7 @@ SHOW FULL COLUMNS FROM t1; Field Type Collation Null Key Default Extra Privileges Comment GROUP_ID int(10) unsigned NULL NO PRI 0 # LANG_ID smallint(5) unsigned NULL NO PRI 0 # -NAME char(80) latin1_swedish_ci NO MUL # +NAME char(80) latin1_swedish_ci NO MUL NULL # DROP TABLE t1; create table t1 (n int); insert into t1 values(9),(3),(12),(10); |