diff options
author | bar@mysql.com <> | 2005-10-13 19:16:19 +0500 |
---|---|---|
committer | bar@mysql.com <> | 2005-10-13 19:16:19 +0500 |
commit | 39b0712cf76c1551ecbb4d051629fb76c72cf7df (patch) | |
tree | 6f8df603e9e49a74a1d1b20940188bc9f42cc7fd /mysql-test/t/alter_table.test | |
parent | bb179f2376a7f805e52d3ff8356144c62a3d7b0d (diff) | |
download | mariadb-git-39b0712cf76c1551ecbb4d051629fb76c72cf7df.tar.gz |
type_binary.result, type_binary.test:
new file
mysql_fix_privilege_tables.sql, mysql_create_system_tables.sh:
Adding true BINARY/VARBINARY: fixing "password" type, not to be 0x00-padding.
Many files:
Adding true BINARY/VARBINARY: fixing tests not to output 0x00 bytes.
Adding true BINARY/VARBINARY: new pad_char structure member.
ctype-bin.c:
Adding true BINARY/VARBINARY: new pad_char structure member.
New strnxfrm, with two trailing length bytes.
field.cc:
Adding true BINARY/VARBINARY.
Diffstat (limited to 'mysql-test/t/alter_table.test')
-rw-r--r-- | mysql-test/t/alter_table.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/alter_table.test b/mysql-test/t/alter_table.test index 5695822be6b..bc3a4b0261d 100644 --- a/mysql-test/t/alter_table.test +++ b/mysql-test/t/alter_table.test @@ -278,7 +278,7 @@ insert into t1 values ('ΤΕΣΤ'); select a,hex(a) from t1; alter table t1 change a a char(10) character set cp1251; select a,hex(a) from t1; -alter table t1 change a a binary(10); +alter table t1 change a a binary(4); select a,hex(a) from t1; alter table t1 change a a char(10) character set cp1251; select a,hex(a) from t1; |