mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge bk-internal:/home/bk/mysql-4.1/
into serg.mylan:/usr/home/serg/Abk/mysql-4.1 BitKeeper/etc/ignore: auto-union include/my_global.h: Auto merged mysql-test/r/ctype_utf8.result: Auto merged mysql-test/r/myisam.result: Auto merged mysql-test/r/type_blob.result: Auto merged mysql-test/t/type_blob.test: Auto merged sql/mysql_priv.h: Auto merged sql/mysqld.cc: Auto merged sql/set_var.cc: Auto merged sql/sql_table.cc: Auto merged sql/share/english/errmsg.txt: Auto merged sql/share/russian/errmsg.txt: Auto merged sql/share/ukrainian/errmsg.txt: Auto merged
This commit is contained in:
@ -168,4 +168,4 @@ hex(s1)
|
||||
41
|
||||
drop table t1;
|
||||
create table t1 (a char(160) character set utf8, primary key(a));
|
||||
ERROR HY000: Incorrect sub part key. The used key part isn't a string, the used length is longer than the key part or the storage engine doesn't support unique sub keys
|
||||
ERROR 42000: Specified key was too long; max key length is 255 bytes
|
||||
|
@ -1,3 +1,4 @@
|
||||
drop table if exists t1;
|
||||
show variables like "ft\_%";
|
||||
Variable_name Value
|
||||
ft_boolean_syntax + -><()~*:""&|
|
||||
@ -5,3 +6,33 @@ ft_min_word_len 4
|
||||
ft_max_word_len 84
|
||||
ft_query_expansion_limit 20
|
||||
ft_stopword_file (built-in)
|
||||
create table t1 (b text not null);
|
||||
insert t1 values ('aaaaaa bbbbbb cccccc');
|
||||
insert t1 values ('bbbbbb cccccc');
|
||||
insert t1 values ('aaaaaa cccccc');
|
||||
select * from t1 where match b against ('+aaaaaa bbbbbb' in boolean mode);
|
||||
b
|
||||
aaaaaa bbbbbb cccccc
|
||||
aaaaaa cccccc
|
||||
set ft_boolean_syntax=' +-><()~*:""&|';
|
||||
ERROR HY000: Variable 'ft_boolean_syntax' is a GLOBAL variable and should be set with SET GLOBAL
|
||||
set global ft_boolean_syntax=' +-><()~*:""&|';
|
||||
select * from t1 where match b against ('+aaaaaa bbbbbb' in boolean mode);
|
||||
b
|
||||
aaaaaa bbbbbb cccccc
|
||||
bbbbbb cccccc
|
||||
set global ft_boolean_syntax='@ -><()~*:""&|';
|
||||
select * from t1 where match b against ('+aaaaaa bbbbbb' in boolean mode);
|
||||
b
|
||||
aaaaaa bbbbbb cccccc
|
||||
bbbbbb cccccc
|
||||
aaaaaa cccccc
|
||||
select * from t1 where match b against ('+aaaaaa @bbbbbb' in boolean mode);
|
||||
b
|
||||
aaaaaa bbbbbb cccccc
|
||||
bbbbbb cccccc
|
||||
set global ft_boolean_syntax='@ -><()~*:""@|';
|
||||
ERROR 42000: Variable 'ft_boolean_syntax' can't be set to the value of '@ -><()~*:""@|'
|
||||
set global ft_boolean_syntax='+ -><()~*:""@!|';
|
||||
ERROR 42000: Variable 'ft_boolean_syntax' can't be set to the value of '+ -><()~*:""@!|'
|
||||
drop table t1;
|
||||
|
@ -323,10 +323,10 @@ Table Op Msg_type Msg_text
|
||||
test.t1 check status OK
|
||||
drop table t1;
|
||||
CREATE TABLE t1 (a varchar(255), b varchar(255), c varchar(255), KEY t1 (a, b, c));
|
||||
ERROR 42000: Specified key was too long. Max key length is 500
|
||||
ERROR 42000: Specified key was too long; max key length is 500 bytes
|
||||
CREATE TABLE t1 (a varchar(255), b varchar(255), c varchar(255));
|
||||
ALTER TABLE t1 ADD INDEX t1 (a, b, c);
|
||||
ERROR 42000: Specified key was too long. Max key length is 500
|
||||
ERROR 42000: Specified key was too long; max key length is 500 bytes
|
||||
DROP TABLE t1;
|
||||
CREATE TABLE t1 (a int not null, b int, c int, key(b), key(c), key(a,b), key(c,a));
|
||||
INSERT into t1 values (0, null, 0), (0, null, 1), (0, null, 2), (0, null,3), (1,1,4);
|
||||
|
@ -346,9 +346,17 @@ HELLO MY 1
|
||||
a 1
|
||||
hello 1
|
||||
drop table t1;
|
||||
create table t1 (a text, unique (a(300)));
|
||||
ERROR 42000: Specified key was too long; max key length is 255 bytes
|
||||
create table t1 (a text, key (a(300)));
|
||||
ERROR HY000: Incorrect sub part key. The used key part isn't a string, the used length is longer than the key part or the storage engine doesn't support unique sub keys
|
||||
create table t1 (a text, key (a(255)));
|
||||
Warnings:
|
||||
Warning 1071 Specified key was too long; max key length is 255 bytes
|
||||
show create table t1;
|
||||
Table Create Table
|
||||
t1 CREATE TABLE `t1` (
|
||||
`a` text,
|
||||
KEY `a` (`a`(255))
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1
|
||||
drop table t1;
|
||||
CREATE TABLE t1 (
|
||||
t1_id bigint(21) NOT NULL auto_increment,
|
||||
|
@ -103,5 +103,5 @@ drop table t1;
|
||||
# Bug 2699
|
||||
# UTF8 breaks primary keys for cols > 85 characters
|
||||
#
|
||||
--error 1089
|
||||
--error 1071
|
||||
create table t1 (a char(160) character set utf8, primary key(a));
|
||||
|
@ -1,5 +1,27 @@
|
||||
#
|
||||
# Fulltext configurable parameters
|
||||
#
|
||||
--disable_warnings
|
||||
drop table if exists t1;
|
||||
--enable_warnings
|
||||
|
||||
show variables like "ft\_%";
|
||||
|
||||
create table t1 (b text not null);
|
||||
insert t1 values ('aaaaaa bbbbbb cccccc');
|
||||
insert t1 values ('bbbbbb cccccc');
|
||||
insert t1 values ('aaaaaa cccccc');
|
||||
select * from t1 where match b against ('+aaaaaa bbbbbb' in boolean mode);
|
||||
-- error 1229
|
||||
set ft_boolean_syntax=' +-><()~*:""&|';
|
||||
set global ft_boolean_syntax=' +-><()~*:""&|';
|
||||
select * from t1 where match b against ('+aaaaaa bbbbbb' in boolean mode);
|
||||
set global ft_boolean_syntax='@ -><()~*:""&|';
|
||||
select * from t1 where match b against ('+aaaaaa bbbbbb' in boolean mode);
|
||||
select * from t1 where match b against ('+aaaaaa @bbbbbb' in boolean mode);
|
||||
-- error 1231
|
||||
set global ft_boolean_syntax='@ -><()~*:""@|';
|
||||
-- error 1231
|
||||
set global ft_boolean_syntax='+ -><()~*:""@!|';
|
||||
drop table t1;
|
||||
|
||||
|
@ -121,8 +121,10 @@ select c,count(*) from t1 group by c;
|
||||
select d,count(*) from t1 group by d;
|
||||
drop table t1;
|
||||
|
||||
!$1089 create table t1 (a text, key (a(300))); # should give an error
|
||||
create table t1 (a text, key (a(255)));
|
||||
-- error 1071
|
||||
create table t1 (a text, unique (a(300))); # should give an error
|
||||
create table t1 (a text, key (a(300))); # key is auto-truncated
|
||||
show create table t1;
|
||||
drop table t1;
|
||||
|
||||
#
|
||||
|
Reference in New Issue
Block a user