mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 12:32:27 +01:00
Portability fix
(BDB test failed in Intel64)
This commit is contained in:
parent
a7c6a100f0
commit
54d9d2e116
2 changed files with 2 additions and 1 deletions
|
@ -1870,7 +1870,7 @@ a b
|
|||
drop table t1;
|
||||
create table t1 (v varchar(65530), key(v));
|
||||
Warnings:
|
||||
Warning 1071 Specified key was too long; max key length is 1024 bytes
|
||||
Warning 1071 Specified key was too long; max key length is MAX_KEY_LENGTH bytes
|
||||
drop table if exists t1;
|
||||
create table t1 (v varchar(65536));
|
||||
Warnings:
|
||||
|
|
|
@ -962,6 +962,7 @@ source include/varchar.inc;
|
|||
# Some errors/warnings on create
|
||||
#
|
||||
|
||||
--replace_result 1024 MAX_KEY_LENGTH 3072 MAX_KEY_LENGTH
|
||||
create table t1 (v varchar(65530), key(v));
|
||||
drop table if exists t1;
|
||||
create table t1 (v varchar(65536));
|
||||
|
|
Loading…
Reference in a new issue