mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
a07e48eca0
Added more DBUG statements Ensure that we are comparing end space with BINARY strings Use 'any_db' instead of '' to mean any database. (For HANDLER command) Only strip ' ' when comparing CHAR, not other space-like characters (like \t) BitKeeper/deleted/.del-ctype_tis620.result-old~3578ceb0b8284685: Delete: mysql-test/r/ctype_tis620.result-old BitKeeper/deleted/.del-ctype_tis620.test-old~ffb1bbd2935d1aba: Delete: mysql-test/t/ctype_tis620.test-old client/mysqlbinlog.cc: Added DBUG statements Added call of my_end() to free all used memory on exit heap/hp_info.c: After merge fixes heap/hp_open.c: After merge fixes include/heap.h: After merge fixes include/m_ctype.h: Use pchar instead of 'int' for character parameters. Added 'my_binary_compare()' include/m_string.h: Fixed wrong define innobase/ibuf/ibuf0ibuf.c: After merge fixes innobase/srv/srv0start.c: After merge fixes mysql-test/r/alter_table.result: Fixed results after merge mysql-test/r/auto_increment.result: Fixed results after merge mysql-test/r/bdb.result: Fixed results after merge mysql-test/r/binary.result: Fixed results after merge mysql-test/r/create.result: Fixed results after merge mysql-test/r/ctype_mb.result: Fixed results after merge mysql-test/r/ctype_tis620.result: Fixed results after merge mysql-test/r/ctype_utf8.result: Fixed results after merge mysql-test/r/delete.result: Fixed results after merge mysql-test/r/func_compress.result: Fixed results after merge mysql-test/r/func_gconcat.result: Fixed results after merge mysql-test/r/func_group.result: Fixed results after merge mysql-test/r/func_str.result: Fixed results after merge mysql-test/r/innodb.result: Fixed results after merge mysql-test/r/insert.result: Fixed results after merge mysql-test/r/insert_select.result: Fixed results after merge mysql-test/r/key.result: Fixed results after merge mysql-test/r/loaddata.result: Fixed results after merge mysql-test/r/lock.result: Fixed results after merge mysql-test/r/myisam.result: Fixed results after merge mysql-test/r/null.result: Fixed results after merge mysql-test/r/null_key.result: Fixed results after merge mysql-test/r/order_by.result: Fixed results after merge mysql-test/r/query_cache.result: Fixed results after merge mysql-test/r/range.result: Fixed results after merge mysql-test/r/rpl_multi_delete.result: Fixed results after merge mysql-test/r/rpl_until.result: Fixed results after merge mysql-test/r/subselect.result: Fixed results after merge mysql-test/r/subselect_innodb.result: Fixed results after merge mysql-test/r/type_blob.result: Fixed results after merge mysql-test/r/type_datetime.result: Fixed results after merge mysql-test/r/type_decimal.result: Fixed results after merge mysql-test/r/type_enum.result: Fixed results after merge mysql-test/r/type_float.result: Fixed results after merge mysql-test/r/type_ranges.result: Fixed results after merge mysql-test/r/type_time.result: Fixed results after merge mysql-test/r/type_timestamp.result: Fixed results after merge mysql-test/r/type_uint.result: Fixed results after merge mysql-test/r/type_year.result: Fixed results after merge mysql-test/r/variables.result: Fixed results after merge mysql-test/r/warnings.result: Fixed results after merge mysql-test/t/case.test: Fixed shifted error messages mysql-test/t/create.test: Fixed shifted error messages mysql-test/t/ctype_collate.test: Fixed shifted error messages mysql-test/t/ctype_tis620.test: Merge with 4.0 ctype_tis620 test mysql-test/t/delete.test: Fixed shifted error messages mysql-test/t/derived.test: Fixed shifted error messages mysql-test/t/fulltext.test: Fixed shifted error messages mysql-test/t/func_in.test: Fixed shifted error messages mysql-test/t/func_str.test: Fixed shifted error messages mysql-test/t/func_test.test: Fixed shifted error messages mysql-test/t/grant.test: Fixed shifted error messages mysql-test/t/innodb.test: Change to 4.1 syntax mysql-test/t/key_cache.test: Fixed shifted error messages mysql-test/t/myisam.test: New test of blob and end space mysql-test/t/row.test: Fixed shifted error messages mysql-test/t/rpl_until.test: Fixed shifted error messages mysql-test/t/subselect.test: Fixed shifted error messages mysql-test/t/subselect_innodb.test: Fix test to take into account foreign key constraints mysql-test/t/union.test: Fixed shifted error messages mysql-test/t/user_var.test: Fixed shifted error messages mysql-test/t/variables.test: Fixed shifted error messages mysys/my_handler.c: Merge with 4.0 code sql/ha_heap.cc: After merge fixes sql/handler.cc: After merge fixes sql/item.cc: After merge fixes sql/item_cmpfunc.cc: Ensure that we are comparing end space with BINARY strings sql/item_cmpfunc.h: Ensure that we are comparing end space with BINARY strings sql/log_event.cc: More DBUG statements Ensure that we use all options to LOAD DATA in replication sql/opt_range.cc: After merge fixes sql/sql_db.cc: After merge fixes sql/sql_handler.cc: After merge fixes Use 'any_db' instead of '' to mean 'no database comparison' sql/sql_parse.cc: After merge fixes sql/sql_select.cc: After merge fixes Added function comment for setup_group() sql/sql_string.cc: Added stringcmp() for binary comparison. Added function comments for sortcmp() and stringcmp() sql/sql_string.h: Added stringcmp() sql/sql_table.cc: After merge fixes sql/sql_update.cc: After merge fixes sql/sql_yacc.yy: Use 'any_db' instead of '' to mean any database. Using "" causes a 'wrong db name' error. strings/ctype-big5.c: Strip only end space, not other space characters. strings/ctype-bin.c: Removed some not needed functions. Added function comments Don't remove end space in comparisons Change my_wildcmp_bin() to be 'identical' with other similar code strings/ctype-czech.c: Strip only end space, not other space characters. strings/ctype-gbk.c: Strip only end space, not other space characters. strings/ctype-latin1.c: Strip only end space, not other space characters. strings/ctype-mb.c: Strip only end space, not other space characters. strings/ctype-simple.c: Strip only end space, not other space characters. strings/ctype-sjis.c: Strip only end space, not other space characters. strings/ctype-tis620.c: Added usage of my_instr_simple. This needs to be cleaned up! strings/ctype-utf8.c: Strip only end space, not other space characters. strings/ctype-win1250ch.c: Strip only end space, not other space characters. Fixed indentation strings/strto.c: Code cleanup
187 lines
6.7 KiB
Text
187 lines
6.7 KiB
Text
drop table if exists t1,t2,t3;
|
|
SET SQL_WARNINGS=1;
|
|
CREATE TABLE t1 (
|
|
ID CHAR(32) NOT NULL,
|
|
name CHAR(32) NOT NULL,
|
|
value CHAR(255),
|
|
INDEX indexIDname (ID(8),name(8))
|
|
) ;
|
|
INSERT INTO t1 VALUES
|
|
('keyword','indexdir','/export/home/local/www/database/indexes/keyword');
|
|
INSERT INTO t1 VALUES ('keyword','urlprefix','text/ /text');
|
|
INSERT INTO t1 VALUES ('keyword','urlmap','/text/ /');
|
|
INSERT INTO t1 VALUES ('keyword','attr','personal employee company');
|
|
INSERT INTO t1 VALUES
|
|
('emailgids','indexdir','/export/home/local/www/database/indexes/emailgids');
|
|
INSERT INTO t1 VALUES ('emailgids','urlprefix','text/ /text');
|
|
INSERT INTO t1 VALUES ('emailgids','urlmap','/text/ /');
|
|
INSERT INTO t1 VALUES ('emailgids','attr','personal employee company');
|
|
SELECT value FROM t1 WHERE ID='emailgids' AND name='attr';
|
|
value
|
|
personal employee company
|
|
drop table t1;
|
|
CREATE TABLE t1 (
|
|
price int(5) DEFAULT '0' NOT NULL,
|
|
area varchar(40) DEFAULT '' NOT NULL,
|
|
type varchar(40) DEFAULT '' NOT NULL,
|
|
transityes enum('Y','N') DEFAULT 'Y' NOT NULL,
|
|
shopsyes enum('Y','N') DEFAULT 'Y' NOT NULL,
|
|
schoolsyes enum('Y','N') DEFAULT 'Y' NOT NULL,
|
|
petsyes enum('Y','N') DEFAULT 'Y' NOT NULL,
|
|
KEY price (price,area,type,transityes,shopsyes,schoolsyes,petsyes)
|
|
);
|
|
INSERT INTO t1 VALUES (900,'Vancouver','Shared/Roomate','N','N','N','N');
|
|
INSERT INTO t1 VALUES (900,'Vancouver','Shared/Roomate','N','N','N','N');
|
|
INSERT INTO t1 VALUES (900,'Vancouver','Shared/Roomate','','','','');
|
|
Warnings:
|
|
Warning 1265 Data truncated for column 'transityes' at row 1
|
|
Warning 1265 Data truncated for column 'shopsyes' at row 1
|
|
Warning 1265 Data truncated for column 'schoolsyes' at row 1
|
|
Warning 1265 Data truncated for column 'petsyes' at row 1
|
|
INSERT INTO t1 VALUES (900,'Vancouver','Shared/Roomate','Y','Y','Y','Y');
|
|
INSERT INTO t1 VALUES (900,'Vancouver','Shared/Roomate','Y','Y','Y','Y');
|
|
INSERT INTO t1 VALUES (900,'Vancouver','Shared/Roomate','Y','Y','Y','Y');
|
|
INSERT INTO t1 VALUES (900,'Vancouver','Shared/Roomate','Y','Y','Y','Y');
|
|
INSERT INTO t1 VALUES (900,'Vancouver','Shared/Roomate','Y','Y','Y','Y');
|
|
SELECT * FROM t1 WHERE area='Vancouver' and transityes='y' and schoolsyes='y' and ( ((type='1 Bedroom' or type='Studio/Bach') and (price<=500)) or ((type='2 Bedroom') and (price<=550)) or ((type='Shared/Roomate') and (price<=300)) or ((type='Room and Board') and (price<=500)) ) and price <= 400;
|
|
price area type transityes shopsyes schoolsyes petsyes
|
|
drop table t1;
|
|
CREATE TABLE t1 (program enum('signup','unique','sliding') not null, type enum('basic','sliding','signup'), sites set('mt'), PRIMARY KEY (program));
|
|
ALTER TABLE t1 modify program enum('signup','unique','sliding');
|
|
drop table t1;
|
|
CREATE TABLE t1 (
|
|
name varchar(50) DEFAULT '' NOT NULL,
|
|
author varchar(50) DEFAULT '' NOT NULL,
|
|
category decimal(10,0) DEFAULT '0' NOT NULL,
|
|
email varchar(50),
|
|
password varchar(50),
|
|
proxy varchar(50),
|
|
bitmap varchar(20),
|
|
msg varchar(255),
|
|
urlscol varchar(127),
|
|
urlhttp varchar(127),
|
|
timeout decimal(10,0),
|
|
nbcnx decimal(10,0),
|
|
creation decimal(10,0),
|
|
livinguntil decimal(10,0),
|
|
lang decimal(10,0),
|
|
type decimal(10,0),
|
|
subcat decimal(10,0),
|
|
subtype decimal(10,0),
|
|
reg char(1),
|
|
scs varchar(255),
|
|
capacity decimal(10,0),
|
|
userISP varchar(50),
|
|
CCident varchar(50) DEFAULT '' NOT NULL,
|
|
PRIMARY KEY (name,author,category)
|
|
);
|
|
INSERT INTO t1 VALUES
|
|
('patnom','patauteur',0,'p.favre@cryo-networks.fr',NULL,NULL,'#p2sndnq6ae5g1u6t','essai\nsalut','scol://195.242.78.119:patauteur.patnom',NULL,NULL,NULL,950036174,-882087474,NULL,3,0,3,'1','Pub/patnom/futur_divers.scs',NULL,'pat','CC1');
|
|
INSERT INTO t1 VALUES
|
|
('LeNomDeMonSite','Marc',0,'m.barilley@cryo-networks.fr',NULL,NULL,NULL,NULL,'scol://195.242.78.119:Marc.LeNomDeMonSite',NULL,NULL,NULL,950560434,-881563214,NULL,3,0,3,'1','Pub/LeNomDeMonSite/domus_hibere.scs',NULL,'Marq','CC1');
|
|
select * from t1 where name='patnom' and author='patauteur' and category=0;
|
|
name author category email password proxy bitmap msg urlscol urlhttp timeout nbcnx creation livinguntil lang type subcat subtype reg scs capacity userISP CCident
|
|
patnom patauteur 0 p.favre@cryo-networks.fr NULL NULL #p2sndnq6ae5g1u6t essai
|
|
salut scol://195.242.78.119:patauteur.patnom NULL NULL NULL 950036174 -882087474 NULL 3 0 3 1 Pub/patnom/futur_divers.scs NULL pat CC1
|
|
drop table t1;
|
|
create table t1
|
|
(
|
|
name_id int not null auto_increment,
|
|
name blob,
|
|
INDEX name_idx (name(5)),
|
|
primary key (name_id)
|
|
);
|
|
INSERT t1 VALUES(NULL,'/');
|
|
INSERT t1 VALUES(NULL,'[T,U]_axpby');
|
|
SELECT * FROM t1 WHERE name='[T,U]_axpy';
|
|
name_id name
|
|
SELECT * FROM t1 WHERE name='[T,U]_axpby';
|
|
name_id name
|
|
2 [T,U]_axpby
|
|
create table t2
|
|
(
|
|
name_id int not null auto_increment,
|
|
name char(255) binary,
|
|
INDEX name_idx (name(5)),
|
|
primary key (name_id)
|
|
);
|
|
INSERT t2 select * from t1;
|
|
SELECT * FROM t2 WHERE name='[T,U]_axpy';
|
|
name_id name
|
|
SELECT * FROM t2 WHERE name='[T,U]_axpby';
|
|
name_id name
|
|
2 [T,U]_axpby
|
|
drop table t1,t2;
|
|
create table t1
|
|
(
|
|
SEQNO numeric(12 ) not null,
|
|
MOTYPEID numeric(12 ) not null,
|
|
MOINSTANCEID numeric(12 ) not null,
|
|
ATTRID numeric(12 ) not null,
|
|
VALUE varchar(120) not null,
|
|
primary key (SEQNO, MOTYPEID, MOINSTANCEID, ATTRID, VALUE )
|
|
);
|
|
INSERT INTO t1 VALUES (1, 1, 1, 1, 'a');
|
|
INSERT INTO t1 VALUES (1, 1, 1, 1, 'b');
|
|
INSERT INTO t1 VALUES (1, 1, 1, 1, 'a');
|
|
ERROR 23000: Duplicate entry '1-1-1-1-a' for key 1
|
|
drop table t1;
|
|
CREATE TABLE t1 (
|
|
a tinytext NOT NULL,
|
|
b tinyint(3) unsigned NOT NULL default '0',
|
|
PRIMARY KEY (a(32),b)
|
|
) ENGINE=MyISAM;
|
|
INSERT INTO t1 VALUES ('a',1),('a',2);
|
|
SELECT * FROM t1 WHERE a='a' AND b=2;
|
|
a b
|
|
a 2
|
|
SELECT * FROM t1 WHERE a='a' AND b in (2);
|
|
a b
|
|
a 2
|
|
SELECT * FROM t1 WHERE a='a' AND b in (1,2);
|
|
a b
|
|
a 1
|
|
a 2
|
|
drop table t1;
|
|
create table t1 (a int not null unique, b int unique, c int, d int not null primary key, key(c), e int not null unique);
|
|
show keys from t1;
|
|
Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment
|
|
t1 0 PRIMARY 1 d A 0 NULL NULL BTREE
|
|
t1 0 a 1 a A 0 NULL NULL BTREE
|
|
t1 0 e 1 e A 0 NULL NULL BTREE
|
|
t1 0 b 1 b A NULL NULL NULL YES BTREE
|
|
t1 1 c 1 c A NULL NULL NULL YES BTREE
|
|
drop table t1;
|
|
CREATE TABLE t1 (c CHAR(10) NOT NULL,i INT NOT NULL AUTO_INCREMENT,
|
|
UNIQUE (c,i));
|
|
INSERT INTO t1 (c) VALUES (NULL),(NULL);
|
|
Warnings:
|
|
Warning 1263 Data truncated, NULL supplied to NOT NULL column 'c' at row 1
|
|
Warning 1263 Data truncated, NULL supplied to NOT NULL column 'c' at row 2
|
|
SELECT * FROM t1;
|
|
c i
|
|
1
|
|
2
|
|
INSERT INTO t1 (c) VALUES ('a'),('a');
|
|
SELECT * FROM t1;
|
|
c i
|
|
1
|
|
2
|
|
a 1
|
|
a 2
|
|
DROP TABLE IF EXISTS t1;
|
|
CREATE TABLE t1 (c CHAR(10) NULL, i INT NOT NULL AUTO_INCREMENT,
|
|
UNIQUE (c,i));
|
|
INSERT INTO t1 (c) VALUES (NULL),(NULL);
|
|
SELECT * FROM t1;
|
|
c i
|
|
NULL 1
|
|
NULL 2
|
|
INSERT INTO t1 (c) VALUES ('a'),('a');
|
|
SELECT * FROM t1;
|
|
c i
|
|
NULL 1
|
|
NULL 2
|
|
a 1
|
|
a 2
|
|
drop table t1;
|