29 changed files with 1362 additions and 35 deletions
-
8appveyor.yml
-
14client/mysql.cc
-
73cmake/cpack_rpm.cmake
-
8extra/mariabackup/ds_compress.cc
-
3mysql-test/lib/My/Debugger.pm
-
1050mysql-test/main/ctype_cp850.result
-
32mysql-test/main/ctype_cp850.test
-
12mysql-test/main/ctype_cp866.result
-
14mysql-test/main/ctype_cp866.test
-
9mysql-test/main/ctype_tis620.result
-
7mysql-test/main/ctype_tis620.test
-
11mysql-test/main/ctype_utf8.result
-
9mysql-test/main/ctype_utf8.test
-
6mysql-test/suite/encryption/r/encrypt_and_grep.result
-
16mysql-test/suite/encryption/t/encrypt_and_grep.test
-
28mysql-test/suite/innodb/r/innodb_ctype_tis620.result
-
29mysql-test/suite/innodb/t/innodb_ctype_tis620.test
-
11mysql-test/suite/maria/maria.result
-
13mysql-test/suite/maria/maria.test
-
1mysql-test/suite/rpl/t/rpl_get_master_version_and_clock.test
-
1mysql-test/suite/rpl/t/rpl_row_big_table_id.test
-
13sql/item.h
-
4sql/item_cmpfunc.cc
-
1sql/mysqld.cc
-
2storage/innobase/pars/pars0grm.cc
-
2storage/innobase/pars/pars0grm.y
-
8storage/maria/ma_extra.c
-
4strings/ctype-mb.c
-
8strings/ctype-tis620.c
1050
mysql-test/main/ctype_cp850.result
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
@ -0,0 +1,12 @@ |
|||
# |
|||
# Start of 10.2 tests |
|||
# |
|||
# |
|||
# MDEV-25610 Assertion `escape != -1' failed in Item_func_like::val_int |
|||
# |
|||
SELECT _cp866'' LIKE _cp866'' ESCAPE _cp866 0xFF; |
|||
_cp866'' LIKE _cp866'' ESCAPE _cp866 0xFF |
|||
1 |
|||
# |
|||
# End of 10.2 tests |
|||
# |
|||
@ -0,0 +1,14 @@ |
|||
--echo # |
|||
--echo # Start of 10.2 tests |
|||
--echo # |
|||
|
|||
--echo # |
|||
--echo # MDEV-25610 Assertion `escape != -1' failed in Item_func_like::val_int |
|||
--echo # |
|||
|
|||
SELECT _cp866'' LIKE _cp866'' ESCAPE _cp866 0xFF; |
|||
|
|||
|
|||
--echo # |
|||
--echo # End of 10.2 tests |
|||
--echo # |
|||
@ -0,0 +1,28 @@ |
|||
SET STORAGE_ENGINE=InnoDB; |
|||
# |
|||
# Start of 10.2 tests |
|||
# |
|||
# |
|||
# MDEV-24901 SIGSEGV in fts_get_table_name, SIGSEGV in ib_vector_size, SIGSEGV in row_merge_fts_doc_tokenize, stack smashing Export |
|||
# |
|||
CREATE TABLE t1(c TEXT CHARACTER SET tis620); |
|||
SHOW CREATE TABLE t1; |
|||
Table Create Table |
|||
t1 CREATE TABLE `t1` ( |
|||
`c` text CHARACTER SET tis620 DEFAULT NULL |
|||
) ENGINE=InnoDB DEFAULT CHARSET=latin1 |
|||
INSERT INTO t1 VALUES('100'); |
|||
ALTER TABLE t1 ADD FULLTEXT INDEX(c), ALGORITHM=INPLACE; |
|||
DROP TABLE t1; |
|||
CREATE TABLE t1(c TEXT CHARACTER SET tis620 COLLATE tis620_thai_nopad_ci); |
|||
SHOW CREATE TABLE t1; |
|||
Table Create Table |
|||
t1 CREATE TABLE `t1` ( |
|||
`c` text CHARACTER SET tis620 COLLATE tis620_thai_nopad_ci DEFAULT NULL |
|||
) ENGINE=InnoDB DEFAULT CHARSET=latin1 |
|||
INSERT INTO t1 VALUES('100'); |
|||
ALTER TABLE t1 ADD FULLTEXT INDEX(c), ALGORITHM=INPLACE; |
|||
DROP TABLE t1; |
|||
# |
|||
# End of 10.2 tests |
|||
# |
|||
@ -0,0 +1,29 @@ |
|||
--source include/have_innodb.inc |
|||
--source include/have_tis620.inc |
|||
|
|||
SET STORAGE_ENGINE=InnoDB; |
|||
|
|||
--echo # |
|||
--echo # Start of 10.2 tests |
|||
--echo # |
|||
|
|||
--echo # |
|||
--echo # MDEV-24901 SIGSEGV in fts_get_table_name, SIGSEGV in ib_vector_size, SIGSEGV in row_merge_fts_doc_tokenize, stack smashing Export |
|||
--echo # |
|||
|
|||
CREATE TABLE t1(c TEXT CHARACTER SET tis620); |
|||
SHOW CREATE TABLE t1; |
|||
INSERT INTO t1 VALUES('100'); |
|||
ALTER TABLE t1 ADD FULLTEXT INDEX(c), ALGORITHM=INPLACE; |
|||
DROP TABLE t1; |
|||
|
|||
CREATE TABLE t1(c TEXT CHARACTER SET tis620 COLLATE tis620_thai_nopad_ci); |
|||
SHOW CREATE TABLE t1; |
|||
INSERT INTO t1 VALUES('100'); |
|||
ALTER TABLE t1 ADD FULLTEXT INDEX(c), ALGORITHM=INPLACE; |
|||
DROP TABLE t1; |
|||
|
|||
|
|||
--echo # |
|||
--echo # End of 10.2 tests |
|||
--echo # |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue