mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 11:01:52 +01:00
auto merge
This commit is contained in:
commit
8c0befa291
54 changed files with 1088 additions and 780 deletions
78
mysql-test/include/wait_show_condition.inc
Normal file
78
mysql-test/include/wait_show_condition.inc
Normal file
|
@ -0,0 +1,78 @@
|
|||
# include/wait_show_condition.inc
|
||||
#
|
||||
# SUMMARY
|
||||
#
|
||||
# Waits until the show statement ($show_statement) has at least within one of
|
||||
# the rows of the result set for the field ($field) a value which fulfils
|
||||
# a condition ($condition), or the operation times out.
|
||||
#
|
||||
#
|
||||
# USAGE
|
||||
#
|
||||
# let $show_statement= SHOW PROCESSLIST;
|
||||
# let $field= State;
|
||||
# let $condition= = 'Updating';
|
||||
# --source include/wait_show_condition.inc
|
||||
#
|
||||
# OR
|
||||
#
|
||||
# let $wait_timeout= 60; # Override default of 30 seconds with 60.
|
||||
# let $show_statement= SHOW PROCESSLIST;
|
||||
# let $field= State;
|
||||
# let $condition= = 'Updating';
|
||||
# --source include/wait_show_condition.inc
|
||||
#
|
||||
# Please do not use this use routine if you can replace the SHOW statement
|
||||
# with a select. In such a case include/wait_condition.inc is recommended.
|
||||
#
|
||||
# Created: 2009-02-18 mleich
|
||||
#
|
||||
|
||||
let $max_run_time= 30;
|
||||
if ($wait_timeout)
|
||||
{
|
||||
let $max_run_time= $wait_timeout;
|
||||
}
|
||||
# Reset $wait_timeout so that its value won't be used on subsequent
|
||||
# calls, and default will be used instead.
|
||||
let $wait_timeout= 0;
|
||||
|
||||
# The smallest timespan till UNIX_TIMESTAMP() gets incremented is ~0 seconds.
|
||||
# We add one second to avoid the case that somebody measures timespans on a
|
||||
# real clock with fractions of seconds, detects that n seconds are sufficient,
|
||||
# assigns n to this routine and suffers because he sometimes gets n - 1
|
||||
# seconds in reality.
|
||||
inc $max_run_time;
|
||||
|
||||
let $found= 0;
|
||||
let $max_end_time= `SELECT UNIX_TIMESTAMP() + $max_run_time`;
|
||||
while (`SELECT UNIX_TIMESTAMP() <= $max_end_time AND $found = 0`)
|
||||
{
|
||||
# Sleep a bit to avoid too heavy load.
|
||||
real_sleep 0.2;
|
||||
let $rowno= 1;
|
||||
let $process_result= 1;
|
||||
while (`SELECT $process_result = 1 AND $found = 0`)
|
||||
{
|
||||
let $field_value= query_get_value($show_statement, $field, $rowno);
|
||||
if (`SELECT '$field_value' $condition`)
|
||||
{
|
||||
let $found= 1;
|
||||
}
|
||||
if (`SELECT '$field_value' = 'No such row'`)
|
||||
{
|
||||
# We are behind the last row of the result set.
|
||||
let $process_result= 0;
|
||||
}
|
||||
inc $rowno;
|
||||
}
|
||||
}
|
||||
if (!$found)
|
||||
{
|
||||
echo # Timeout in include/wait_show_condition.inc for $wait_condition;
|
||||
echo # show_statement : $show_statement;
|
||||
echo # field : $field;
|
||||
echo # condition : $condition;
|
||||
echo # max_run_time : $max_run_time;
|
||||
}
|
||||
|
17
mysql-test/r/innodb_bug42419.result
Normal file
17
mysql-test/r/innodb_bug42419.result
Normal file
|
@ -0,0 +1,17 @@
|
|||
CREATE TABLE t1 (a INT AUTO_INCREMENT PRIMARY KEY, b INT) ENGINE = InnoDB;
|
||||
INSERT INTO t1 VALUES (1,1),(2,2),(3,3);
|
||||
COMMIT;
|
||||
SET AUTOCOMMIT = 0;
|
||||
CREATE TEMPORARY TABLE t1_tmp ( b INT );
|
||||
INSERT INTO t1_tmp (b) SELECT b FROM t1 WHERE a = 3;
|
||||
INSERT INTO t1_tmp (b) SELECT b FROM t1 WHERE a = 2;
|
||||
SET AUTOCOMMIT = 0;
|
||||
CREATE TEMPORARY TABLE t2_tmp ( a int, new_a int );
|
||||
INSERT INTO t2_tmp VALUES (1,51),(2,52),(3,53);
|
||||
UPDATE t1 SET a = (SELECT new_a FROM t2_tmp WHERE t2_tmp.a = t1.a) WHERE a = 1;
|
||||
UPDATE t1 SET a = (SELECT new_a FROM t2_tmp WHERE t2_tmp.a = t1.a) WHERE a = 2;
|
||||
INSERT INTO t1_tmp (b) SELECT b FROM t1 WHERE a = 1;
|
||||
ERROR 40001: Deadlock found when trying to get lock; try restarting transaction
|
||||
Reap the server message for connection user2 UPDATE t1 ...
|
||||
UPDATE t1 SET a = (SELECT new_a FROM t2_tmp WHERE t2_tmp.a = t1.a) WHERE a = 3;
|
||||
DROP TABLE t1;
|
|
@ -1683,24 +1683,6 @@ CREATE INDEX i1 on t1 (a(3));
|
|||
SELECT * FROM t1 WHERE a = 'abcde';
|
||||
a
|
||||
DROP TABLE t1;
|
||||
connect(localhost,root,,test,12500,/home/kgeorge/mysql/work/B42419-merge-5.1-bugteam/mysql-test/var/tmp/mysqld.1.sock);
|
||||
connect(localhost,root,,test,12500,/home/kgeorge/mysql/work/B42419-merge-5.1-bugteam/mysql-test/var/tmp/mysqld.1.sock);
|
||||
CREATE TABLE t1 (a INT NOT NULL AUTO_INCREMENT PRIMARY KEY, b INT)
|
||||
ENGINE=InnoDB;
|
||||
INSERT INTO t1 VALUES (1,1),(2,2),(3,3);
|
||||
SET AUTOCOMMIT = 0;
|
||||
CREATE TEMPORARY TABLE t1_tmp (b INT);
|
||||
INSERT INTO t1_tmp SELECT b FROM t1 WHERE a = 3;
|
||||
INSERT INTO t1_tmp SELECT b FROM t1 WHERE a = 2;
|
||||
SET AUTOCOMMIT = 0;
|
||||
CREATE TEMPORARY TABLE t2_tmp ( a INT, new_a INT);
|
||||
INSERT INTO t2_tmp VALUES (1,51),(2,52),(3,53);
|
||||
UPDATE t1 SET a = (SELECT new_a FROM t2_tmp WHERE t2_tmp.a = t1.a) WHERE a = 1;
|
||||
UPDATE t1 SET a = (SELECT new_a FROM t2_tmp WHERE t2_tmp.a = t1.a) WHERE a = 2;
|
||||
INSERT INTO t1_tmp SELECT b FROM t1 WHERE a = 1;
|
||||
ERROR 40001: Deadlock found when trying to get lock; try restarting transaction
|
||||
UPDATE t1 SET a = (SELECT new_a FROM t2_tmp WHERE t2_tmp.a = t1.a) WHERE a = 3;
|
||||
DROP TABLE t1;
|
||||
CREATE TABLE foo (a int, b int, c char(10),
|
||||
PRIMARY KEY (c(3)),
|
||||
KEY b (b)
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
SET @old_general_log= @@global.general_log;
|
||||
drop table if exists t1, t2;
|
||||
CREATE TABLE t1 (a INT, FOREIGN KEY (a) REFERENCES t0 (a))
|
||||
ENGINE=MyISAM
|
||||
PARTITION BY HASH (a);
|
||||
ERROR HY000: Foreign key clause is not yet supported in conjunction with partitioning
|
||||
CREATE TABLE t1 (
|
||||
pk INT NOT NULL AUTO_INCREMENT,
|
||||
PRIMARY KEY (pk)
|
||||
|
|
|
@ -1,4 +1,13 @@
|
|||
drop table if exists t1;
|
||||
CREATE TABLE t1 (a INTEGER NOT NULL, PRIMARY KEY (a));
|
||||
INSERT INTO t1 VALUES (1),(1);
|
||||
ERROR 23000: Duplicate entry '1' for key 'PRIMARY'
|
||||
DROP TABLE t1;
|
||||
CREATE TABLE t1 (a INTEGER NOT NULL, PRIMARY KEY (a))
|
||||
PARTITION BY KEY (a) PARTITIONS 2;
|
||||
INSERT INTO t1 VALUES (1),(1);
|
||||
ERROR 23000: Duplicate entry '1' for key 'PRIMARY'
|
||||
DROP TABLE t1;
|
||||
CREATE TABLE t1 (a INT)
|
||||
PARTITION BY HASH (a)
|
||||
( PARTITION p0 ENGINE=MyISAM,
|
||||
|
|
|
@ -25,13 +25,13 @@ ALTER TABLE t1 DROP PARTITION x10, x1, x2, x3;
|
|||
ERROR HY000: Error in list of partitions to DROP
|
||||
ALTER TABLE t1 REORGANIZE PARTITION x0,x1,x2,x3,x4,x5,x6,x7,x8,x9,x10 INTO
|
||||
(PARTITION x11 VALUES LESS THAN (22));
|
||||
ERROR HY000: More partitions to reorganise than there are partitions
|
||||
ERROR HY000: More partitions to reorganize than there are partitions
|
||||
ALTER TABLE t1 REORGANIZE PARTITION x0,x1,x2 INTO
|
||||
(PARTITION x3 VALUES LESS THAN (6));
|
||||
ERROR HY000: Duplicate partition name x3
|
||||
ALTER TABLE t1 REORGANIZE PARTITION x0, x2 INTO
|
||||
(PARTITION x11 VALUES LESS THAN (2));
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE t1 REORGANIZE PARTITION x0, x1, x1 INTO
|
||||
(PARTITION x11 VALUES LESS THAN (4));
|
||||
ERROR HY000: Error in list of partitions to REORGANIZE
|
||||
|
|
|
@ -22,3 +22,52 @@ Qcache_queries_in_cache 0
|
|||
set global query_cache_size= 0;
|
||||
use test;
|
||||
drop table t1;
|
||||
SET @old_concurrent_insert= @@GLOBAL.concurrent_insert;
|
||||
SET @old_query_cache_size= @@GLOBAL.query_cache_size;
|
||||
DROP TABLE IF EXISTS t1, t2;
|
||||
CREATE TABLE t1 (a INT);
|
||||
CREATE TABLE t2 (a INT);
|
||||
INSERT INTO t1 VALUES (1),(2),(3);
|
||||
SET GLOBAL concurrent_insert= 1;
|
||||
SET GLOBAL query_cache_size= 1024*512;
|
||||
SET GLOBAL query_cache_type= ON;
|
||||
# Switch to connection con1
|
||||
SET SESSION debug='+d,wait_after_query_cache_invalidate';
|
||||
# Send concurrent insert, will wait in the query cache table invalidate
|
||||
INSERT INTO t1 VALUES (4);
|
||||
# Switch to connection default
|
||||
# Wait for concurrent insert to reach the debug point
|
||||
# Switch to connection con2
|
||||
# Send SELECT that shouldn't be cached
|
||||
SELECT * FROM t1;
|
||||
a
|
||||
1
|
||||
2
|
||||
3
|
||||
# Switch to connection default
|
||||
# Notify the concurrent insert to proceed
|
||||
SELECT ID FROM INFORMATION_SCHEMA.PROCESSLIST
|
||||
WHERE STATE = 'wait_after_query_cache_invalidate' INTO @thread_id;
|
||||
KILL QUERY @thread_id;
|
||||
# Switch to connection con1
|
||||
# Gather insert result
|
||||
SHOW STATUS LIKE "Qcache_queries_in_cache";
|
||||
Variable_name Value
|
||||
Qcache_queries_in_cache 0
|
||||
# Test that it's cacheable
|
||||
SELECT * FROM t1;
|
||||
a
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
SHOW STATUS LIKE "Qcache_queries_in_cache";
|
||||
Variable_name Value
|
||||
Qcache_queries_in_cache 1
|
||||
# Disconnect
|
||||
# Restore defaults
|
||||
RESET QUERY CACHE;
|
||||
DROP TABLE t1,t2;
|
||||
SET GLOBAL concurrent_insert= DEFAULT;
|
||||
SET GLOBAL query_cache_size= DEFAULT;
|
||||
SET GLOBAL query_cache_type= DEFAULT;
|
||||
|
|
|
@ -29,10 +29,11 @@ INSERT INTO t1 VALUES (5), (16);
|
|||
if (!$mysql_errno)
|
||||
{
|
||||
echo # ERROR (only OK if Blackhole) should give ER_DUP_KEY or ER_DUP_ENTRY;
|
||||
echo # mysql_errno: $mysql_errno;
|
||||
}
|
||||
INSERT INTO t1 VALUES (17);
|
||||
INSERT INTO t1 VALUES (19), (NULL);
|
||||
-- error 0, ER_DUP_KEY
|
||||
-- error 0, ER_DUP_ENTRY, ER_DUP_KEY
|
||||
INSERT INTO t1 VALUES (NULL), (10), (NULL);
|
||||
if ($mysql_errno)
|
||||
{
|
||||
|
@ -116,16 +117,17 @@ ENGINE=$engine
|
|||
PARTITION BY HASH(c2)
|
||||
PARTITIONS 2;
|
||||
INSERT INTO t1 VALUES (1, NULL);
|
||||
-- error 0, ER_DUP_KEY
|
||||
-- error 0, ER_DUP_KEY, ER_DUP_ENTRY
|
||||
INSERT INTO t1 VALUES (1, 1), (99, 99);
|
||||
if (!$mysql_errno)
|
||||
{
|
||||
echo # ERROR (only OK if Blackhole) should give ER_DUP_KEY or ER_DUP_ENTRY;
|
||||
echo # mysql_errno: $mysql_errno;
|
||||
}
|
||||
INSERT INTO t1 VALUES (1, NULL);
|
||||
let $old_sql_mode = `select @@session.sql_mode`;
|
||||
SET @@session.sql_mode = 'NO_AUTO_VALUE_ON_ZERO';
|
||||
-- error 0, ER_DUP_KEY
|
||||
-- error 0, ER_DUP_ENTRY, ER_DUP_KEY
|
||||
INSERT INTO t1 VALUES (1, 0);
|
||||
if ($mysql_errno)
|
||||
{
|
||||
|
@ -140,7 +142,7 @@ eval CREATE TABLE t1 (
|
|||
ENGINE=$engine
|
||||
PARTITION BY HASH(c2)
|
||||
PARTITIONS 2;
|
||||
-- error 0, ER_DUP_KEY
|
||||
-- error 0, ER_DUP_ENTRY, ER_DUP_KEY
|
||||
INSERT INTO t1 VALUES (1, 0);
|
||||
if ($mysql_errno)
|
||||
{
|
||||
|
@ -163,26 +165,27 @@ PARTITION BY HASH(c1)
|
|||
PARTITIONS 2;
|
||||
INSERT INTO t1 VALUES (2), (4), (NULL);
|
||||
INSERT INTO t1 VALUES (0);
|
||||
-- error 0, ER_DUP_KEY
|
||||
-- error 0, ER_DUP_KEY, ER_DUP_ENTRY
|
||||
INSERT INTO t1 VALUES (5), (16);
|
||||
if (!$mysql_errno)
|
||||
{
|
||||
echo # ERROR (only OK if Blackhole) should give ER_DUP_KEY or ER_DUP_ENTRY;
|
||||
echo # mysql_errno: $mysql_errno;
|
||||
}
|
||||
INSERT INTO t1 VALUES (17), (19), (NULL);
|
||||
-- error 0, ER_DUP_KEY
|
||||
-- error 0, ER_DUP_ENTRY, ER_DUP_KEY
|
||||
INSERT INTO t1 VALUES (NULL), (10), (NULL);
|
||||
if ($mysql_errno)
|
||||
{
|
||||
echo # ERROR (only OK if Archive) mysql_errno: $mysql_errno;
|
||||
}
|
||||
-- error 0, ER_DUP_KEY
|
||||
-- error 0, ER_DUP_ENTRY, ER_DUP_KEY
|
||||
INSERT INTO t1 VALUES (NULL), (9);
|
||||
if ($mysql_errno)
|
||||
{
|
||||
echo # ERROR (only OK if Archive) mysql_errno: $mysql_errno;
|
||||
}
|
||||
-- error 0, ER_DUP_KEY
|
||||
-- error 0, ER_DUP_ENTRY, ER_DUP_KEY
|
||||
INSERT INTO t1 VALUES (59), (55);
|
||||
if ($mysql_errno)
|
||||
{
|
||||
|
@ -270,7 +273,7 @@ SELECT AUTO_INCREMENT FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA='test'
|
|||
AND TABLE_NAME='t1';
|
||||
SELECT AUTO_INCREMENT FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA='test'
|
||||
AND TABLE_NAME='t1';
|
||||
-- error 0, ER_DUP_KEY
|
||||
-- error 0, ER_DUP_ENTRY, ER_DUP_KEY
|
||||
INSERT INTO t1 VALUES (10);
|
||||
if ($mysql_errno)
|
||||
{
|
||||
|
@ -281,7 +284,7 @@ INSERT INTO t1 VALUES (NULL);
|
|||
SELECT AUTO_INCREMENT FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA='test'
|
||||
AND TABLE_NAME='t1';
|
||||
INSERT INTO t1 VALUES (NULL);
|
||||
-- error 0, ER_DUP_KEY
|
||||
-- error 0, ER_DUP_ENTRY, ER_DUP_KEY
|
||||
INSERT INTO t1 VALUES (15);
|
||||
if ($mysql_errno)
|
||||
{
|
||||
|
@ -340,7 +343,7 @@ connection con1;
|
|||
INSERT INTO t1 (c1) VALUES (NULL);
|
||||
connection default;
|
||||
-- echo # con default
|
||||
-- error 0, ER_DUP_KEY
|
||||
-- error 0, ER_DUP_ENTRY, ER_DUP_KEY
|
||||
INSERT INTO t1 (c1) VALUES (16);
|
||||
if ($mysql_errno)
|
||||
{
|
||||
|
@ -426,7 +429,7 @@ connection con1;
|
|||
INSERT INTO t1 (c1) VALUES (NULL);
|
||||
connection default;
|
||||
-- echo # con default
|
||||
-- error 0, ER_DUP_KEY
|
||||
-- error 0, ER_DUP_ENTRY, ER_DUP_KEY
|
||||
INSERT INTO t1 (c1) VALUES (16);
|
||||
if ($mysql_errno)
|
||||
{
|
||||
|
@ -483,6 +486,7 @@ INSERT INTO t1 VALUES (1, 1);
|
|||
if (!$mysql_errno)
|
||||
{
|
||||
echo # ERROR (only OK if Blackhole) should give ER_DUP_KEY or ER_DUP_ENTRY;
|
||||
echo # mysql_errno: $mysql_errno;
|
||||
}
|
||||
INSERT INTO t1 VALUES (1, NULL);
|
||||
INSERT INTO t1 VALUES (2, NULL), (3, 11), (3, NULL), (2, 0);
|
||||
|
@ -492,6 +496,7 @@ INSERT INTO t1 VALUES (2, 2);
|
|||
if (!$mysql_errno)
|
||||
{
|
||||
echo # ERROR (only OK if Blackhole) should give ER_DUP_KEY or ER_DUP_ENTRY;
|
||||
echo # mysql_errno: $mysql_errno;
|
||||
}
|
||||
INSERT INTO t1 VALUES (2, 22);
|
||||
INSERT INTO t1 VALUES (2, NULL);
|
||||
|
@ -527,16 +532,18 @@ INSERT INTO t1 VALUES (1, 1);
|
|||
if (!$mysql_errno)
|
||||
{
|
||||
echo # ERROR (only OK if Blackhole) should give ER_DUP_KEY or ER_DUP_ENTRY;
|
||||
echo # mysql_errno: $mysql_errno;
|
||||
}
|
||||
INSERT INTO t1 VALUES (1, NULL);
|
||||
INSERT INTO t1 VALUES (2, NULL);
|
||||
INSERT INTO t1 VALUES (3, NULL);
|
||||
INSERT INTO t1 VALUES (3, NULL), (2, 0), (2, NULL);
|
||||
-- error 0, ER_DUP_KEY
|
||||
-- error 0, ER_DUP_ENTRY, ER_DUP_KEY
|
||||
INSERT INTO t1 VALUES (2, 2);
|
||||
if (!$mysql_errno)
|
||||
{
|
||||
echo # ERROR (only OK if Blackhole/NDB) should give ER_DUP_KEY or ER_DUP_ENTRY;
|
||||
echo # ERROR (only OK if Blackhole/NDB) should give ER_DUP_KEY or ER_DUP_ENTRY;
|
||||
echo # mysql_errno: $mysql_errno;
|
||||
}
|
||||
INSERT INTO t1 VALUES (2, 22), (2, NULL);
|
||||
SELECT * FROM t1 ORDER BY c1,c2;
|
||||
|
@ -550,7 +557,7 @@ eval CREATE TABLE t1 (c1 INT NOT NULL AUTO_INCREMENT, PRIMARY KEY (c1))
|
|||
PARTITION BY HASH(c1)
|
||||
PARTITIONS 2;
|
||||
SHOW CREATE TABLE t1;
|
||||
-- error 0, ER_DUP_KEY
|
||||
-- error 0, ER_DUP_ENTRY, ER_DUP_KEY
|
||||
INSERT INTO t1 (c1) VALUES (4);
|
||||
if ($mysql_errno)
|
||||
{
|
||||
|
@ -568,7 +575,7 @@ let $old_sql_mode = `select @@session.sql_mode`;
|
|||
SET @@session.sql_mode = 'NO_AUTO_VALUE_ON_ZERO';
|
||||
INSERT INTO t1 (c1) VALUES (300);
|
||||
SHOW CREATE TABLE t1;
|
||||
-- error 0, ER_DUP_KEY
|
||||
-- error 0, ER_DUP_ENTRY, ER_DUP_KEY
|
||||
INSERT INTO t1 (c1) VALUES (0);
|
||||
if ($mysql_errno)
|
||||
{
|
||||
|
|
|
@ -86,7 +86,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -578,7 +578,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -1085,7 +1085,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -1588,7 +1588,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -2087,7 +2087,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -2597,7 +2597,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -3107,7 +3107,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -3607,7 +3607,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -4100,7 +4100,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -4592,7 +4592,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -5099,7 +5099,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -5602,7 +5602,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -6101,7 +6101,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -6611,7 +6611,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -7121,7 +7121,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -7621,7 +7621,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -8115,7 +8115,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -8623,7 +8623,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -9146,7 +9146,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -9665,7 +9665,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -10180,7 +10180,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -10706,7 +10706,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -11232,7 +11232,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -11748,7 +11748,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -12257,7 +12257,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -12765,7 +12765,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -13288,7 +13288,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -13807,7 +13807,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -14322,7 +14322,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -14848,7 +14848,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -15374,7 +15374,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -15890,7 +15890,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -16401,7 +16401,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -16894,7 +16894,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -17402,7 +17402,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -17906,7 +17906,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -18406,7 +18406,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -18917,7 +18917,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -19428,7 +19428,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -19929,7 +19929,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -20423,7 +20423,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -20916,7 +20916,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -21424,7 +21424,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -21928,7 +21928,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -22428,7 +22428,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -22939,7 +22939,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -23450,7 +23450,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -23951,7 +23951,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -24445,7 +24445,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -24938,7 +24938,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -25446,7 +25446,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -25950,7 +25950,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -26450,7 +26450,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -26961,7 +26961,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -27472,7 +27472,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -27973,7 +27973,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
|
|
@ -94,7 +94,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -617,7 +617,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -1161,7 +1161,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -1697,7 +1697,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -2233,7 +2233,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -2780,7 +2780,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -3327,7 +3327,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -3866,7 +3866,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -4384,7 +4384,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -4907,7 +4907,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -5451,7 +5451,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -5987,7 +5987,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -6523,7 +6523,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -7070,7 +7070,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -7617,7 +7617,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -8156,7 +8156,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
|
|
@ -404,7 +404,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -896,7 +896,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -1403,7 +1403,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -1906,7 +1906,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -2405,7 +2405,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -2917,7 +2917,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -3427,7 +3427,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -3927,7 +3927,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -4420,7 +4420,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -4912,7 +4912,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -5419,7 +5419,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -5922,7 +5922,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -6421,7 +6421,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -6933,7 +6933,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -7443,7 +7443,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -7943,7 +7943,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -8437,7 +8437,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -8945,7 +8945,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -9468,7 +9468,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -9987,7 +9987,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -10502,7 +10502,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -11030,7 +11030,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -11556,7 +11556,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -12072,7 +12072,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -12581,7 +12581,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -13089,7 +13089,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -13612,7 +13612,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -14131,7 +14131,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -14646,7 +14646,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -15174,7 +15174,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -15700,7 +15700,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -16216,7 +16216,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
|
|
@ -253,7 +253,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -776,7 +776,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -1320,7 +1320,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -1856,7 +1856,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -2392,7 +2392,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -2941,7 +2941,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -3488,7 +3488,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -4027,7 +4027,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -4545,7 +4545,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -5068,7 +5068,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -5612,7 +5612,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -6148,7 +6148,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -6684,7 +6684,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -7233,7 +7233,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -7780,7 +7780,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -8319,7 +8319,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
|
|
@ -3815,7 +3815,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -4307,7 +4307,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -4814,7 +4814,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -5317,7 +5317,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -5816,7 +5816,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -6328,7 +6328,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -6838,7 +6838,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -7338,7 +7338,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -7831,7 +7831,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -8323,7 +8323,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -8830,7 +8830,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -9333,7 +9333,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -9832,7 +9832,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -10344,7 +10344,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -10854,7 +10854,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -11354,7 +11354,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -11848,7 +11848,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -12356,7 +12356,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -12879,7 +12879,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -13398,7 +13398,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -13913,7 +13913,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -14441,7 +14441,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -14967,7 +14967,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -15483,7 +15483,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -15992,7 +15992,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -16500,7 +16500,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -17023,7 +17023,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -17542,7 +17542,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -18057,7 +18057,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -18585,7 +18585,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -19111,7 +19111,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -19627,7 +19627,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -27596,7 +27596,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -28088,7 +28088,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -28595,7 +28595,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -29098,7 +29098,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -29597,7 +29597,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -30109,7 +30109,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -30619,7 +30619,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -31119,7 +31119,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -31612,7 +31612,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -32104,7 +32104,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -32611,7 +32611,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -33114,7 +33114,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -33613,7 +33613,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -34123,7 +34123,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -34633,7 +34633,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -35133,7 +35133,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -35626,7 +35626,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -36118,7 +36118,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -36625,7 +36625,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -37128,7 +37128,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -37627,7 +37627,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -38139,7 +38139,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -38649,7 +38649,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -39149,7 +39149,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -39642,7 +39642,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -40134,7 +40134,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -40641,7 +40641,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -41144,7 +41144,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -41643,7 +41643,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -42153,7 +42153,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -42663,7 +42663,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -43163,7 +43163,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -43657,7 +43657,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -44165,7 +44165,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -44688,7 +44688,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -45207,7 +45207,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -45722,7 +45722,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -46250,7 +46250,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -46776,7 +46776,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -47292,7 +47292,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -47801,7 +47801,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -48309,7 +48309,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -48832,7 +48832,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -49351,7 +49351,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -49866,7 +49866,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -50392,7 +50392,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -50918,7 +50918,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -51434,7 +51434,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -51943,7 +51943,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -52451,7 +52451,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -52974,7 +52974,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -53493,7 +53493,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -54008,7 +54008,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -54536,7 +54536,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -55062,7 +55062,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -55578,7 +55578,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -56087,7 +56087,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -56595,7 +56595,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -57118,7 +57118,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -57637,7 +57637,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -58152,7 +58152,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -58678,7 +58678,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -59204,7 +59204,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -59720,7 +59720,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
|
|
@ -3971,7 +3971,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -4494,7 +4494,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -5038,7 +5038,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -5574,7 +5574,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -6110,7 +6110,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -6659,7 +6659,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -7206,7 +7206,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -7745,7 +7745,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -8263,7 +8263,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -8786,7 +8786,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -9330,7 +9330,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -9866,7 +9866,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -10402,7 +10402,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -10951,7 +10951,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -11498,7 +11498,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -12037,7 +12037,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -20311,7 +20311,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -20834,7 +20834,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -21378,7 +21378,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -21914,7 +21914,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -22450,7 +22450,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -22999,7 +22999,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -23546,7 +23546,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -24085,7 +24085,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -24603,7 +24603,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -25126,7 +25126,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -25670,7 +25670,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -26206,7 +26206,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -26742,7 +26742,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -27289,7 +27289,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -27836,7 +27836,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -28375,7 +28375,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -28893,7 +28893,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -29416,7 +29416,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -29960,7 +29960,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -30496,7 +30496,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -31032,7 +31032,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -31581,7 +31581,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -32128,7 +32128,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -32667,7 +32667,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -33185,7 +33185,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -33708,7 +33708,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -34252,7 +34252,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -34788,7 +34788,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -35324,7 +35324,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -35871,7 +35871,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -36418,7 +36418,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -36957,7 +36957,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
|
|
@ -3826,7 +3826,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -4320,7 +4320,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -4829,7 +4829,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -5334,7 +5334,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -5833,7 +5833,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -6347,7 +6347,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -6857,7 +6857,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -7359,7 +7359,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -7854,7 +7854,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -8348,7 +8348,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -8857,7 +8857,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -9362,7 +9362,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -9861,7 +9861,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -10375,7 +10375,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -10885,7 +10885,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -11387,7 +11387,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -11883,7 +11883,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -12393,7 +12393,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -12918,7 +12918,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -13439,7 +13439,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -13954,7 +13954,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -14484,7 +14484,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -15010,7 +15010,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -15528,7 +15528,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -16039,7 +16039,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -16549,7 +16549,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -17074,7 +17074,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -17595,7 +17595,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -18110,7 +18110,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -18640,7 +18640,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -19166,7 +19166,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -19684,7 +19684,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -27712,7 +27712,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -28207,7 +28207,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -28717,7 +28717,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -29223,7 +29223,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -29727,7 +29727,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -30242,7 +30242,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -30757,7 +30757,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -31260,7 +31260,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -31756,7 +31756,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -32251,7 +32251,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -32761,7 +32761,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -33267,7 +33267,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -33771,7 +33771,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -34286,7 +34286,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -34801,7 +34801,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -35304,7 +35304,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -35800,7 +35800,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -36295,7 +36295,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -36805,7 +36805,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -37311,7 +37311,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -37815,7 +37815,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -38330,7 +38330,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -38845,7 +38845,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -39348,7 +39348,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -39844,7 +39844,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -40339,7 +40339,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -40849,7 +40849,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -41355,7 +41355,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -41859,7 +41859,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -42374,7 +42374,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -42889,7 +42889,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -43392,7 +43392,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -43889,7 +43889,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -44400,7 +44400,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -44926,7 +44926,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -45448,7 +45448,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -45968,7 +45968,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -46499,7 +46499,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -47030,7 +47030,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -47549,7 +47549,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -48061,7 +48061,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -48572,7 +48572,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -49098,7 +49098,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -49620,7 +49620,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -50140,7 +50140,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -50671,7 +50671,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -51202,7 +51202,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -51721,7 +51721,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -52233,7 +52233,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -52744,7 +52744,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -53270,7 +53270,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -53792,7 +53792,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -54312,7 +54312,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -54843,7 +54843,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -55374,7 +55374,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -55893,7 +55893,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -56405,7 +56405,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -56916,7 +56916,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -57442,7 +57442,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -57964,7 +57964,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -58484,7 +58484,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -59015,7 +59015,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -59546,7 +59546,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -60065,7 +60065,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
|
|
@ -3983,7 +3983,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -4508,7 +4508,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -5054,7 +5054,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -5592,7 +5592,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -6128,7 +6128,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -6679,7 +6679,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -7226,7 +7226,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -7767,7 +7767,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -8287,7 +8287,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -8812,7 +8812,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -9358,7 +9358,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -9896,7 +9896,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -10432,7 +10432,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -10983,7 +10983,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -11530,7 +11530,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -12071,7 +12071,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -20404,7 +20404,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -20930,7 +20930,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -21477,7 +21477,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -22016,7 +22016,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -22557,7 +22557,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -23109,7 +23109,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -23661,7 +23661,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -24203,7 +24203,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -24724,7 +24724,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -25250,7 +25250,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -25797,7 +25797,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -26336,7 +26336,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -26877,7 +26877,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -27429,7 +27429,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -27981,7 +27981,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -28523,7 +28523,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -29044,7 +29044,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -29570,7 +29570,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -30117,7 +30117,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -30656,7 +30656,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -31197,7 +31197,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -31749,7 +31749,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -32301,7 +32301,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -32843,7 +32843,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -33364,7 +33364,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -33890,7 +33890,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -34437,7 +34437,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -34976,7 +34976,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -35517,7 +35517,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -36069,7 +36069,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -36621,7 +36621,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -37163,7 +37163,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
|
|
@ -28,6 +28,7 @@ AUTO_INCREMENT
|
|||
INSERT INTO t1 VALUES (0);
|
||||
INSERT INTO t1 VALUES (5), (16);
|
||||
# ERROR (only OK if Blackhole) should give ER_DUP_KEY or ER_DUP_ENTRY
|
||||
# mysql_errno: 0
|
||||
INSERT INTO t1 VALUES (17);
|
||||
INSERT INTO t1 VALUES (19), (NULL);
|
||||
INSERT INTO t1 VALUES (NULL), (10), (NULL);
|
||||
|
@ -144,6 +145,7 @@ PARTITIONS 2;
|
|||
INSERT INTO t1 VALUES (1, NULL);
|
||||
INSERT INTO t1 VALUES (1, 1), (99, 99);
|
||||
# ERROR (only OK if Blackhole) should give ER_DUP_KEY or ER_DUP_ENTRY
|
||||
# mysql_errno: 0
|
||||
INSERT INTO t1 VALUES (1, NULL);
|
||||
SET @@session.sql_mode = 'NO_AUTO_VALUE_ON_ZERO';
|
||||
INSERT INTO t1 VALUES (1, 0);
|
||||
|
@ -176,6 +178,7 @@ INSERT INTO t1 VALUES (2), (4), (NULL);
|
|||
INSERT INTO t1 VALUES (0);
|
||||
INSERT INTO t1 VALUES (5), (16);
|
||||
# ERROR (only OK if Blackhole) should give ER_DUP_KEY or ER_DUP_ENTRY
|
||||
# mysql_errno: 0
|
||||
INSERT INTO t1 VALUES (17), (19), (NULL);
|
||||
INSERT INTO t1 VALUES (NULL), (10), (NULL);
|
||||
INSERT INTO t1 VALUES (NULL), (9);
|
||||
|
@ -441,11 +444,13 @@ PARTITIONS 2;
|
|||
INSERT INTO t1 VALUES (1, 0);
|
||||
INSERT INTO t1 VALUES (1, 1);
|
||||
# ERROR (only OK if Blackhole) should give ER_DUP_KEY or ER_DUP_ENTRY
|
||||
# mysql_errno: 0
|
||||
INSERT INTO t1 VALUES (1, NULL);
|
||||
INSERT INTO t1 VALUES (2, NULL), (3, 11), (3, NULL), (2, 0);
|
||||
INSERT INTO t1 VALUES (2, NULL);
|
||||
INSERT INTO t1 VALUES (2, 2);
|
||||
# ERROR (only OK if Blackhole) should give ER_DUP_KEY or ER_DUP_ENTRY
|
||||
# mysql_errno: 0
|
||||
INSERT INTO t1 VALUES (2, 22);
|
||||
INSERT INTO t1 VALUES (2, NULL);
|
||||
SELECT * FROM t1 ORDER BY c1,c2;
|
||||
|
@ -462,12 +467,14 @@ PARTITIONS 2;
|
|||
INSERT INTO t1 VALUES (1, 0);
|
||||
INSERT INTO t1 VALUES (1, 1);
|
||||
# ERROR (only OK if Blackhole) should give ER_DUP_KEY or ER_DUP_ENTRY
|
||||
# mysql_errno: 0
|
||||
INSERT INTO t1 VALUES (1, NULL);
|
||||
INSERT INTO t1 VALUES (2, NULL);
|
||||
INSERT INTO t1 VALUES (3, NULL);
|
||||
INSERT INTO t1 VALUES (3, NULL), (2, 0), (2, NULL);
|
||||
INSERT INTO t1 VALUES (2, 2);
|
||||
# ERROR (only OK if Blackhole/NDB) should give ER_DUP_KEY or ER_DUP_ENTRY
|
||||
# mysql_errno: 0
|
||||
INSERT INTO t1 VALUES (2, 22), (2, NULL);
|
||||
SELECT * FROM t1 ORDER BY c1,c2;
|
||||
c1 c2
|
||||
|
|
|
@ -649,6 +649,7 @@ INSERT INTO t1 VALUES (3, NULL);
|
|||
INSERT INTO t1 VALUES (3, NULL), (2, 0), (2, NULL);
|
||||
INSERT INTO t1 VALUES (2, 2);
|
||||
# ERROR (only OK if Blackhole/NDB) should give ER_DUP_KEY or ER_DUP_ENTRY
|
||||
# mysql_errno: 0
|
||||
INSERT INTO t1 VALUES (2, 22), (2, NULL);
|
||||
SELECT * FROM t1 ORDER BY c1,c2;
|
||||
c1 c2
|
||||
|
|
|
@ -7538,7 +7538,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -8030,7 +8030,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -8537,7 +8537,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -9040,7 +9040,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -9539,7 +9539,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -10051,7 +10051,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -10565,7 +10565,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -11065,7 +11065,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -11558,7 +11558,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -12050,7 +12050,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -12557,7 +12557,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -13060,7 +13060,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -13559,7 +13559,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -14071,7 +14071,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -14585,7 +14585,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -15085,7 +15085,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -15578,7 +15578,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -16086,7 +16086,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -16609,7 +16609,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -17128,7 +17128,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -17643,7 +17643,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -18171,7 +18171,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -18701,7 +18701,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -19217,7 +19217,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -19731,7 +19731,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -20223,7 +20223,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -20730,7 +20730,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -21233,7 +21233,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -21732,7 +21732,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -22242,7 +22242,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -22752,7 +22752,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -23252,7 +23252,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -23745,7 +23745,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -24237,7 +24237,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -24744,7 +24744,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -25247,7 +25247,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -25746,7 +25746,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -26256,7 +26256,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -26766,7 +26766,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -27266,7 +27266,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'PRIMARY'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -27759,7 +27759,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -28267,7 +28267,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -28790,7 +28790,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -29309,7 +29309,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -29824,7 +29824,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -30350,7 +30350,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -30876,7 +30876,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -31392,7 +31392,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
|
|
@ -7774,7 +7774,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -8293,7 +8293,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -8833,7 +8833,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -9365,7 +9365,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -9897,7 +9897,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -10442,7 +10442,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -10989,7 +10989,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -11524,7 +11524,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -12043,7 +12043,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -12562,7 +12562,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -13102,7 +13102,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -13634,7 +13634,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -14166,7 +14166,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -14709,7 +14709,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -15252,7 +15252,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -15787,7 +15787,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
|
|
@ -8177,7 +8177,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -8725,7 +8725,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -9289,7 +9289,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -9845,7 +9845,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -10401,7 +10401,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -10966,7 +10966,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -11549,7 +11549,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -12108,7 +12108,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -12638,7 +12638,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -13186,7 +13186,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -13750,7 +13750,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -14306,7 +14306,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -14862,7 +14862,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -15425,7 +15425,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -16008,7 +16008,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -16567,7 +16567,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -17091,7 +17091,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -17629,7 +17629,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -18186,7 +18186,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -18730,7 +18730,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -19274,7 +19274,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -19832,7 +19832,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
@ -20381,7 +20381,7 @@ INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
|||
SELECT f_int1, f_int1, CAST(f_int1 AS CHAR),
|
||||
CAST(f_int1 AS CHAR), 'delete me' FROM t0_template
|
||||
WHERE f_int1 IN (2,3);
|
||||
ERROR 23000: Can't write; duplicate key in table 't1'
|
||||
ERROR 23000: Duplicate entry '2-2' for key 'uidx1'
|
||||
# check prerequisites-3 success: 1
|
||||
# INFO: f_int1 AND/OR f_int2 AND/OR (f_int1,f_int2) is UNIQUE
|
||||
INSERT INTO t1 (f_int1, f_int2, f_char1, f_char2, f_charbig)
|
||||
|
|
|
@ -93,11 +93,11 @@ TableA CREATE TABLE `TableA` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION PARTA ,
|
||||
PARTITION partc );
|
||||
ERROR HY000: REORGANISE PARTITION can only be used to reorganise partitions not to change their numbers
|
||||
ERROR HY000: REORGANIZE PARTITION can only be used to reorganize partitions not to change their numbers
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB ,
|
||||
PARTITION parta );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB INTO
|
||||
(PARTITION partB COMMENT="Previusly named parta",
|
||||
PARTITION parta COMMENT="Previusly named partB");
|
||||
|
@ -329,11 +329,11 @@ TableA CREATE TABLE `TableA` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION PARTA ,
|
||||
PARTITION partc );
|
||||
ERROR HY000: REORGANISE PARTITION can only be used to reorganise partitions not to change their numbers
|
||||
ERROR HY000: REORGANIZE PARTITION can only be used to reorganize partitions not to change their numbers
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB ,
|
||||
PARTITION parta );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB INTO
|
||||
(PARTITION partB COMMENT="Previusly named parta",
|
||||
PARTITION parta COMMENT="Previusly named partB");
|
||||
|
@ -559,7 +559,7 @@ TableA CREATE TABLE `TableA` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB VALUES LESS THAN (3) ,
|
||||
PARTITION parta VALUES LESS THAN (11) );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION partB,Partc,PartD,PartE INTO
|
||||
(PARTITION partD VALUES LESS THAN (8)
|
||||
COMMENT="Previously partB and partly Partc",
|
||||
|
@ -793,7 +793,7 @@ PARTITION partF VALUES IN (3,9)
|
|||
COMMENT = "Mix 2 of old parta and Partc",
|
||||
PARTITION parta VALUES IN (4,8)
|
||||
COMMENT = "Mix 3 of old parta and Partc");
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION Partc VALUES IN (1,7)
|
||||
COMMENT = "Mix 1 of old parta and Partc",
|
||||
|
|
|
@ -93,11 +93,11 @@ TableA CREATE TABLE `TableA` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION PARTA ,
|
||||
PARTITION partc );
|
||||
ERROR HY000: REORGANISE PARTITION can only be used to reorganise partitions not to change their numbers
|
||||
ERROR HY000: REORGANIZE PARTITION can only be used to reorganize partitions not to change their numbers
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB ,
|
||||
PARTITION parta );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB INTO
|
||||
(PARTITION partB COMMENT="Previusly named parta",
|
||||
PARTITION parta COMMENT="Previusly named partB");
|
||||
|
@ -329,11 +329,11 @@ TableA CREATE TABLE `TableA` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION PARTA ,
|
||||
PARTITION partc );
|
||||
ERROR HY000: REORGANISE PARTITION can only be used to reorganise partitions not to change their numbers
|
||||
ERROR HY000: REORGANIZE PARTITION can only be used to reorganize partitions not to change their numbers
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB ,
|
||||
PARTITION parta );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB INTO
|
||||
(PARTITION partB COMMENT="Previusly named parta",
|
||||
PARTITION parta COMMENT="Previusly named partB");
|
||||
|
@ -559,7 +559,7 @@ TableA CREATE TABLE `TableA` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB VALUES LESS THAN (3) ,
|
||||
PARTITION parta VALUES LESS THAN (11) );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION partB,Partc,PartD,PartE INTO
|
||||
(PARTITION partD VALUES LESS THAN (8)
|
||||
COMMENT="Previously partB and partly Partc",
|
||||
|
@ -793,7 +793,7 @@ PARTITION partF VALUES IN (3,9)
|
|||
COMMENT = "Mix 2 of old parta and Partc",
|
||||
PARTITION parta VALUES IN (4,8)
|
||||
COMMENT = "Mix 3 of old parta and Partc");
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION Partc VALUES IN (1,7)
|
||||
COMMENT = "Mix 1 of old parta and Partc",
|
||||
|
|
|
@ -93,11 +93,11 @@ TableA CREATE TABLE `TableA` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION PARTA ,
|
||||
PARTITION partc );
|
||||
ERROR HY000: REORGANISE PARTITION can only be used to reorganise partitions not to change their numbers
|
||||
ERROR HY000: REORGANIZE PARTITION can only be used to reorganize partitions not to change their numbers
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB ,
|
||||
PARTITION parta );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB INTO
|
||||
(PARTITION partB COMMENT="Previusly named parta",
|
||||
PARTITION parta COMMENT="Previusly named partB");
|
||||
|
@ -329,11 +329,11 @@ TableA CREATE TABLE `TableA` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION PARTA ,
|
||||
PARTITION partc );
|
||||
ERROR HY000: REORGANISE PARTITION can only be used to reorganise partitions not to change their numbers
|
||||
ERROR HY000: REORGANIZE PARTITION can only be used to reorganize partitions not to change their numbers
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB ,
|
||||
PARTITION parta );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB INTO
|
||||
(PARTITION partB COMMENT="Previusly named parta",
|
||||
PARTITION parta COMMENT="Previusly named partB");
|
||||
|
@ -559,7 +559,7 @@ TableA CREATE TABLE `TableA` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB VALUES LESS THAN (3) ,
|
||||
PARTITION parta VALUES LESS THAN (11) );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION partB,Partc,PartD,PartE INTO
|
||||
(PARTITION partD VALUES LESS THAN (8)
|
||||
COMMENT="Previously partB and partly Partc",
|
||||
|
@ -793,7 +793,7 @@ PARTITION partF VALUES IN (3,9)
|
|||
COMMENT = "Mix 2 of old parta and Partc",
|
||||
PARTITION parta VALUES IN (4,8)
|
||||
COMMENT = "Mix 3 of old parta and Partc");
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION Partc VALUES IN (1,7)
|
||||
COMMENT = "Mix 1 of old parta and Partc",
|
||||
|
|
|
@ -93,11 +93,11 @@ TableA CREATE TABLE `TableA` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION PARTA ,
|
||||
PARTITION partc );
|
||||
ERROR HY000: REORGANISE PARTITION can only be used to reorganise partitions not to change their numbers
|
||||
ERROR HY000: REORGANIZE PARTITION can only be used to reorganize partitions not to change their numbers
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB ,
|
||||
PARTITION parta );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB INTO
|
||||
(PARTITION partB COMMENT="Previusly named parta",
|
||||
PARTITION parta COMMENT="Previusly named partB");
|
||||
|
@ -329,11 +329,11 @@ TableA CREATE TABLE `TableA` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION PARTA ,
|
||||
PARTITION partc );
|
||||
ERROR HY000: REORGANISE PARTITION can only be used to reorganise partitions not to change their numbers
|
||||
ERROR HY000: REORGANIZE PARTITION can only be used to reorganize partitions not to change their numbers
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB ,
|
||||
PARTITION parta );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB INTO
|
||||
(PARTITION partB COMMENT="Previusly named parta",
|
||||
PARTITION parta COMMENT="Previusly named partB");
|
||||
|
@ -559,7 +559,7 @@ TableA CREATE TABLE `TableA` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB VALUES LESS THAN (3) ,
|
||||
PARTITION parta VALUES LESS THAN (11) );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION partB,Partc,PartD,PartE INTO
|
||||
(PARTITION partD VALUES LESS THAN (8)
|
||||
COMMENT="Previously partB and partly Partc",
|
||||
|
@ -793,7 +793,7 @@ PARTITION partF VALUES IN (3,9)
|
|||
COMMENT = "Mix 2 of old parta and Partc",
|
||||
PARTITION parta VALUES IN (4,8)
|
||||
COMMENT = "Mix 3 of old parta and Partc");
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION Partc VALUES IN (1,7)
|
||||
COMMENT = "Mix 1 of old parta and Partc",
|
||||
|
|
|
@ -93,11 +93,11 @@ TableA CREATE TABLE `TableA` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION PARTA ,
|
||||
PARTITION partc );
|
||||
ERROR HY000: REORGANISE PARTITION can only be used to reorganise partitions not to change their numbers
|
||||
ERROR HY000: REORGANIZE PARTITION can only be used to reorganize partitions not to change their numbers
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB ,
|
||||
PARTITION parta );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB INTO
|
||||
(PARTITION partB COMMENT="Previusly named parta",
|
||||
PARTITION parta COMMENT="Previusly named partB");
|
||||
|
|
|
@ -93,11 +93,11 @@ TableA CREATE TABLE `tablea` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION PARTA ,
|
||||
PARTITION partc );
|
||||
ERROR HY000: REORGANISE PARTITION can only be used to reorganise partitions not to change their numbers
|
||||
ERROR HY000: REORGANIZE PARTITION can only be used to reorganize partitions not to change their numbers
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB ,
|
||||
PARTITION parta );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB INTO
|
||||
(PARTITION partB COMMENT="Previusly named parta",
|
||||
PARTITION parta COMMENT="Previusly named partB");
|
||||
|
@ -320,11 +320,11 @@ TableA CREATE TABLE `tablea` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION PARTA ,
|
||||
PARTITION partc );
|
||||
ERROR HY000: REORGANISE PARTITION can only be used to reorganise partitions not to change their numbers
|
||||
ERROR HY000: REORGANIZE PARTITION can only be used to reorganize partitions not to change their numbers
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB ,
|
||||
PARTITION parta );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB INTO
|
||||
(PARTITION partB COMMENT="Previusly named parta",
|
||||
PARTITION parta COMMENT="Previusly named partB");
|
||||
|
@ -541,7 +541,7 @@ TableA CREATE TABLE `tablea` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB VALUES LESS THAN (3) ,
|
||||
PARTITION parta VALUES LESS THAN (11) );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION partB,Partc,PartD,PartE INTO
|
||||
(PARTITION partD VALUES LESS THAN (8)
|
||||
COMMENT="Previously partB and partly Partc",
|
||||
|
@ -767,7 +767,7 @@ PARTITION partF VALUES IN (3,9)
|
|||
COMMENT = "Mix 2 of old parta and Partc",
|
||||
PARTITION parta VALUES IN (4,8)
|
||||
COMMENT = "Mix 3 of old parta and Partc");
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION Partc VALUES IN (1,7)
|
||||
COMMENT = "Mix 1 of old parta and Partc",
|
||||
|
|
|
@ -93,11 +93,11 @@ TableA CREATE TABLE `tablea` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION PARTA ,
|
||||
PARTITION partc );
|
||||
ERROR HY000: REORGANISE PARTITION can only be used to reorganise partitions not to change their numbers
|
||||
ERROR HY000: REORGANIZE PARTITION can only be used to reorganize partitions not to change their numbers
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB ,
|
||||
PARTITION parta );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB INTO
|
||||
(PARTITION partB COMMENT="Previusly named parta",
|
||||
PARTITION parta COMMENT="Previusly named partB");
|
||||
|
@ -320,11 +320,11 @@ TableA CREATE TABLE `tablea` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION PARTA ,
|
||||
PARTITION partc );
|
||||
ERROR HY000: REORGANISE PARTITION can only be used to reorganise partitions not to change their numbers
|
||||
ERROR HY000: REORGANIZE PARTITION can only be used to reorganize partitions not to change their numbers
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB ,
|
||||
PARTITION parta );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB INTO
|
||||
(PARTITION partB COMMENT="Previusly named parta",
|
||||
PARTITION parta COMMENT="Previusly named partB");
|
||||
|
@ -541,7 +541,7 @@ TableA CREATE TABLE `tablea` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB VALUES LESS THAN (3) ,
|
||||
PARTITION parta VALUES LESS THAN (11) );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION partB,Partc,PartD,PartE INTO
|
||||
(PARTITION partD VALUES LESS THAN (8)
|
||||
COMMENT="Previously partB and partly Partc",
|
||||
|
@ -767,7 +767,7 @@ PARTITION partF VALUES IN (3,9)
|
|||
COMMENT = "Mix 2 of old parta and Partc",
|
||||
PARTITION parta VALUES IN (4,8)
|
||||
COMMENT = "Mix 3 of old parta and Partc");
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION Partc VALUES IN (1,7)
|
||||
COMMENT = "Mix 1 of old parta and Partc",
|
||||
|
|
|
@ -93,11 +93,11 @@ TableA CREATE TABLE `tablea` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION PARTA ,
|
||||
PARTITION partc );
|
||||
ERROR HY000: REORGANISE PARTITION can only be used to reorganise partitions not to change their numbers
|
||||
ERROR HY000: REORGANIZE PARTITION can only be used to reorganize partitions not to change their numbers
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB ,
|
||||
PARTITION parta );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB INTO
|
||||
(PARTITION partB COMMENT="Previusly named parta",
|
||||
PARTITION parta COMMENT="Previusly named partB");
|
||||
|
@ -320,11 +320,11 @@ TableA CREATE TABLE `tablea` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION PARTA ,
|
||||
PARTITION partc );
|
||||
ERROR HY000: REORGANISE PARTITION can only be used to reorganise partitions not to change their numbers
|
||||
ERROR HY000: REORGANIZE PARTITION can only be used to reorganize partitions not to change their numbers
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB ,
|
||||
PARTITION parta );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB INTO
|
||||
(PARTITION partB COMMENT="Previusly named parta",
|
||||
PARTITION parta COMMENT="Previusly named partB");
|
||||
|
@ -541,7 +541,7 @@ TableA CREATE TABLE `tablea` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB VALUES LESS THAN (3) ,
|
||||
PARTITION parta VALUES LESS THAN (11) );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION partB,Partc,PartD,PartE INTO
|
||||
(PARTITION partD VALUES LESS THAN (8)
|
||||
COMMENT="Previously partB and partly Partc",
|
||||
|
@ -767,7 +767,7 @@ PARTITION partF VALUES IN (3,9)
|
|||
COMMENT = "Mix 2 of old parta and Partc",
|
||||
PARTITION parta VALUES IN (4,8)
|
||||
COMMENT = "Mix 3 of old parta and Partc");
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION Partc VALUES IN (1,7)
|
||||
COMMENT = "Mix 1 of old parta and Partc",
|
||||
|
|
|
@ -93,11 +93,11 @@ TableA CREATE TABLE `tablea` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION PARTA ,
|
||||
PARTITION partc );
|
||||
ERROR HY000: REORGANISE PARTITION can only be used to reorganise partitions not to change their numbers
|
||||
ERROR HY000: REORGANIZE PARTITION can only be used to reorganize partitions not to change their numbers
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB ,
|
||||
PARTITION parta );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB INTO
|
||||
(PARTITION partB COMMENT="Previusly named parta",
|
||||
PARTITION parta COMMENT="Previusly named partB");
|
||||
|
@ -320,11 +320,11 @@ TableA CREATE TABLE `tablea` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION PARTA ,
|
||||
PARTITION partc );
|
||||
ERROR HY000: REORGANISE PARTITION can only be used to reorganise partitions not to change their numbers
|
||||
ERROR HY000: REORGANIZE PARTITION can only be used to reorganize partitions not to change their numbers
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB ,
|
||||
PARTITION parta );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB INTO
|
||||
(PARTITION partB COMMENT="Previusly named parta",
|
||||
PARTITION parta COMMENT="Previusly named partB");
|
||||
|
@ -541,7 +541,7 @@ TableA CREATE TABLE `tablea` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB VALUES LESS THAN (3) ,
|
||||
PARTITION parta VALUES LESS THAN (11) );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION partB,Partc,PartD,PartE INTO
|
||||
(PARTITION partD VALUES LESS THAN (8)
|
||||
COMMENT="Previously partB and partly Partc",
|
||||
|
@ -767,7 +767,7 @@ PARTITION partF VALUES IN (3,9)
|
|||
COMMENT = "Mix 2 of old parta and Partc",
|
||||
PARTITION parta VALUES IN (4,8)
|
||||
COMMENT = "Mix 3 of old parta and Partc");
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION Partc VALUES IN (1,7)
|
||||
COMMENT = "Mix 1 of old parta and Partc",
|
||||
|
|
|
@ -93,11 +93,11 @@ TableA CREATE TABLE `tablea` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION PARTA ,
|
||||
PARTITION partc );
|
||||
ERROR HY000: REORGANISE PARTITION can only be used to reorganise partitions not to change their numbers
|
||||
ERROR HY000: REORGANIZE PARTITION can only be used to reorganize partitions not to change their numbers
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB ,
|
||||
PARTITION parta );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB INTO
|
||||
(PARTITION partB COMMENT="Previusly named parta",
|
||||
PARTITION parta COMMENT="Previusly named partB");
|
||||
|
|
|
@ -93,11 +93,11 @@ TableA CREATE TABLE `TableA` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION PARTA ,
|
||||
PARTITION partc );
|
||||
ERROR HY000: REORGANISE PARTITION can only be used to reorganise partitions not to change their numbers
|
||||
ERROR HY000: REORGANIZE PARTITION can only be used to reorganize partitions not to change their numbers
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB ,
|
||||
PARTITION parta );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB INTO
|
||||
(PARTITION partB COMMENT="Previusly named parta",
|
||||
PARTITION parta COMMENT="Previusly named partB");
|
||||
|
@ -320,11 +320,11 @@ TableA CREATE TABLE `TableA` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION PARTA ,
|
||||
PARTITION partc );
|
||||
ERROR HY000: REORGANISE PARTITION can only be used to reorganise partitions not to change their numbers
|
||||
ERROR HY000: REORGANIZE PARTITION can only be used to reorganize partitions not to change their numbers
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB ,
|
||||
PARTITION parta );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB INTO
|
||||
(PARTITION partB COMMENT="Previusly named parta",
|
||||
PARTITION parta COMMENT="Previusly named partB");
|
||||
|
@ -541,7 +541,7 @@ TableA CREATE TABLE `TableA` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB VALUES LESS THAN (3) ,
|
||||
PARTITION parta VALUES LESS THAN (11) );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION partB,Partc,PartD,PartE INTO
|
||||
(PARTITION partD VALUES LESS THAN (8)
|
||||
COMMENT="Previously partB and partly Partc",
|
||||
|
@ -767,7 +767,7 @@ PARTITION partF VALUES IN (3,9)
|
|||
COMMENT = "Mix 2 of old parta and Partc",
|
||||
PARTITION parta VALUES IN (4,8)
|
||||
COMMENT = "Mix 3 of old parta and Partc");
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION Partc VALUES IN (1,7)
|
||||
COMMENT = "Mix 1 of old parta and Partc",
|
||||
|
|
|
@ -93,11 +93,11 @@ TableA CREATE TABLE `TableA` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION PARTA ,
|
||||
PARTITION partc );
|
||||
ERROR HY000: REORGANISE PARTITION can only be used to reorganise partitions not to change their numbers
|
||||
ERROR HY000: REORGANIZE PARTITION can only be used to reorganize partitions not to change their numbers
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB ,
|
||||
PARTITION parta );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB INTO
|
||||
(PARTITION partB COMMENT="Previusly named parta",
|
||||
PARTITION parta COMMENT="Previusly named partB");
|
||||
|
@ -320,11 +320,11 @@ TableA CREATE TABLE `TableA` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION PARTA ,
|
||||
PARTITION partc );
|
||||
ERROR HY000: REORGANISE PARTITION can only be used to reorganise partitions not to change their numbers
|
||||
ERROR HY000: REORGANIZE PARTITION can only be used to reorganize partitions not to change their numbers
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB ,
|
||||
PARTITION parta );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB INTO
|
||||
(PARTITION partB COMMENT="Previusly named parta",
|
||||
PARTITION parta COMMENT="Previusly named partB");
|
||||
|
@ -541,7 +541,7 @@ TableA CREATE TABLE `TableA` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB VALUES LESS THAN (3) ,
|
||||
PARTITION parta VALUES LESS THAN (11) );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION partB,Partc,PartD,PartE INTO
|
||||
(PARTITION partD VALUES LESS THAN (8)
|
||||
COMMENT="Previously partB and partly Partc",
|
||||
|
@ -767,7 +767,7 @@ PARTITION partF VALUES IN (3,9)
|
|||
COMMENT = "Mix 2 of old parta and Partc",
|
||||
PARTITION parta VALUES IN (4,8)
|
||||
COMMENT = "Mix 3 of old parta and Partc");
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION Partc VALUES IN (1,7)
|
||||
COMMENT = "Mix 1 of old parta and Partc",
|
||||
|
|
|
@ -93,11 +93,11 @@ TableA CREATE TABLE `TableA` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION PARTA ,
|
||||
PARTITION partc );
|
||||
ERROR HY000: REORGANISE PARTITION can only be used to reorganise partitions not to change their numbers
|
||||
ERROR HY000: REORGANIZE PARTITION can only be used to reorganize partitions not to change their numbers
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB ,
|
||||
PARTITION parta );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB INTO
|
||||
(PARTITION partB COMMENT="Previusly named parta",
|
||||
PARTITION parta COMMENT="Previusly named partB");
|
||||
|
@ -320,11 +320,11 @@ TableA CREATE TABLE `TableA` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION PARTA ,
|
||||
PARTITION partc );
|
||||
ERROR HY000: REORGANISE PARTITION can only be used to reorganise partitions not to change their numbers
|
||||
ERROR HY000: REORGANIZE PARTITION can only be used to reorganize partitions not to change their numbers
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB ,
|
||||
PARTITION parta );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB INTO
|
||||
(PARTITION partB COMMENT="Previusly named parta",
|
||||
PARTITION parta COMMENT="Previusly named partB");
|
||||
|
@ -541,7 +541,7 @@ TableA CREATE TABLE `TableA` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB VALUES LESS THAN (3) ,
|
||||
PARTITION parta VALUES LESS THAN (11) );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION partB,Partc,PartD,PartE INTO
|
||||
(PARTITION partD VALUES LESS THAN (8)
|
||||
COMMENT="Previously partB and partly Partc",
|
||||
|
@ -767,7 +767,7 @@ PARTITION partF VALUES IN (3,9)
|
|||
COMMENT = "Mix 2 of old parta and Partc",
|
||||
PARTITION parta VALUES IN (4,8)
|
||||
COMMENT = "Mix 3 of old parta and Partc");
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION Partc VALUES IN (1,7)
|
||||
COMMENT = "Mix 1 of old parta and Partc",
|
||||
|
|
|
@ -93,11 +93,11 @@ TableA CREATE TABLE `TableA` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION PARTA ,
|
||||
PARTITION partc );
|
||||
ERROR HY000: REORGANISE PARTITION can only be used to reorganise partitions not to change their numbers
|
||||
ERROR HY000: REORGANIZE PARTITION can only be used to reorganize partitions not to change their numbers
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB ,
|
||||
PARTITION parta );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB INTO
|
||||
(PARTITION partB COMMENT="Previusly named parta",
|
||||
PARTITION parta COMMENT="Previusly named partB");
|
||||
|
@ -320,11 +320,11 @@ TableA CREATE TABLE `TableA` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION PARTA ,
|
||||
PARTITION partc );
|
||||
ERROR HY000: REORGANISE PARTITION can only be used to reorganise partitions not to change their numbers
|
||||
ERROR HY000: REORGANIZE PARTITION can only be used to reorganize partitions not to change their numbers
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB ,
|
||||
PARTITION parta );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB INTO
|
||||
(PARTITION partB COMMENT="Previusly named parta",
|
||||
PARTITION parta COMMENT="Previusly named partB");
|
||||
|
@ -541,7 +541,7 @@ TableA CREATE TABLE `TableA` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB VALUES LESS THAN (3) ,
|
||||
PARTITION parta VALUES LESS THAN (11) );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION partB,Partc,PartD,PartE INTO
|
||||
(PARTITION partD VALUES LESS THAN (8)
|
||||
COMMENT="Previously partB and partly Partc",
|
||||
|
@ -767,7 +767,7 @@ PARTITION partF VALUES IN (3,9)
|
|||
COMMENT = "Mix 2 of old parta and Partc",
|
||||
PARTITION parta VALUES IN (4,8)
|
||||
COMMENT = "Mix 3 of old parta and Partc");
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION Partc VALUES IN (1,7)
|
||||
COMMENT = "Mix 1 of old parta and Partc",
|
||||
|
|
|
@ -93,11 +93,11 @@ TableA CREATE TABLE `TableA` (
|
|||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB,Partc INTO
|
||||
(PARTITION PARTA ,
|
||||
PARTITION partc );
|
||||
ERROR HY000: REORGANISE PARTITION can only be used to reorganise partitions not to change their numbers
|
||||
ERROR HY000: REORGANIZE PARTITION can only be used to reorganize partitions not to change their numbers
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,Partc INTO
|
||||
(PARTITION partB ,
|
||||
PARTITION parta );
|
||||
ERROR HY000: When reorganising a set of partitions they must be in consecutive order
|
||||
ERROR HY000: When reorganizing a set of partitions they must be in consecutive order
|
||||
ALTER TABLE TableA REORGANIZE PARTITION parta,partB INTO
|
||||
(PARTITION partB COMMENT="Previusly named parta",
|
||||
PARTITION parta COMMENT="Previusly named partB");
|
||||
|
|
|
@ -4,16 +4,17 @@ reset master;
|
|||
reset slave;
|
||||
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
||||
start slave;
|
||||
CREATE TABLE t1(n INT NOT NULL AUTO_INCREMENT PRIMARY KEY);
|
||||
INSERT INTO t1 VALUES (1),(2),(3),(4);
|
||||
DROP TABLE t1;
|
||||
CREATE TABLE t2(n INT NOT NULL AUTO_INCREMENT PRIMARY KEY);
|
||||
INSERT INTO t2 VALUES (1),(2);
|
||||
INSERT INTO t2 VALUES (3),(4);
|
||||
DROP TABLE t2;
|
||||
include/stop_slave.inc
|
||||
create table t1(n int not null auto_increment primary key);
|
||||
insert into t1 values (1),(2),(3),(4);
|
||||
drop table t1;
|
||||
create table t2(n int not null auto_increment primary key);
|
||||
insert into t2 values (1),(2);
|
||||
insert into t2 values (3),(4);
|
||||
drop table t2;
|
||||
start slave until master_log_file='master-bin.000001', master_log_pos=311;
|
||||
select * from t1;
|
||||
RESET SLAVE;
|
||||
START SLAVE UNTIL MASTER_LOG_FILE='master-bin.000001', MASTER_LOG_POS=master_pos_drop_t1
|
||||
SELECT * FROM t1;
|
||||
n
|
||||
1
|
||||
2
|
||||
|
@ -23,10 +24,10 @@ SHOW SLAVE STATUS;
|
|||
Slave_IO_State #
|
||||
Master_Host 127.0.0.1
|
||||
Master_User root
|
||||
Master_Port MASTER_PORT
|
||||
Master_Port #
|
||||
Connect_Retry 1
|
||||
Master_Log_File master-bin.000001
|
||||
Read_Master_Log_Pos 1161
|
||||
Read_Master_Log_Pos #
|
||||
Relay_Log_File #
|
||||
Relay_Log_Pos #
|
||||
Relay_Master_Log_File master-bin.000001
|
||||
|
@ -41,11 +42,11 @@ Replicate_Wild_Ignore_Table
|
|||
Last_Errno 0
|
||||
Last_Error
|
||||
Skip_Counter 0
|
||||
Exec_Master_Log_Pos 454
|
||||
Exec_Master_Log_Pos MASTER_POS_DROP_T1
|
||||
Relay_Log_Space #
|
||||
Until_Condition Master
|
||||
Until_Log_File master-bin.000001
|
||||
Until_Log_Pos 311
|
||||
Until_Log_Pos MASTER_POS_DROP_T1
|
||||
Master_SSL_Allowed No
|
||||
Master_SSL_CA_File
|
||||
Master_SSL_CA_Path
|
||||
|
@ -58,8 +59,8 @@ Last_IO_Errno #
|
|||
Last_IO_Error #
|
||||
Last_SQL_Errno 0
|
||||
Last_SQL_Error
|
||||
start slave until master_log_file='master-no-such-bin.000001', master_log_pos=291;
|
||||
select * from t1;
|
||||
START SLAVE UNTIL MASTER_LOG_FILE='master-no-such-bin.000001', MASTER_LOG_POS=291;
|
||||
SELECT * FROM t1;
|
||||
n
|
||||
1
|
||||
2
|
||||
|
@ -69,10 +70,10 @@ SHOW SLAVE STATUS;
|
|||
Slave_IO_State #
|
||||
Master_Host 127.0.0.1
|
||||
Master_User root
|
||||
Master_Port MASTER_PORT
|
||||
Master_Port #
|
||||
Connect_Retry 1
|
||||
Master_Log_File master-bin.000001
|
||||
Read_Master_Log_Pos 1161
|
||||
Read_Master_Log_Pos #
|
||||
Relay_Log_File #
|
||||
Relay_Log_Pos #
|
||||
Relay_Master_Log_File master-bin.000001
|
||||
|
@ -87,7 +88,7 @@ Replicate_Wild_Ignore_Table
|
|||
Last_Errno 0
|
||||
Last_Error
|
||||
Skip_Counter 0
|
||||
Exec_Master_Log_Pos 454
|
||||
Exec_Master_Log_Pos MASTER_POS_DROP_T1
|
||||
Relay_Log_Space #
|
||||
Until_Condition Master
|
||||
Until_Log_File master-no-such-bin.000001
|
||||
|
@ -104,8 +105,8 @@ Last_IO_Errno #
|
|||
Last_IO_Error #
|
||||
Last_SQL_Errno 0
|
||||
Last_SQL_Error
|
||||
start slave until relay_log_file='slave-relay-bin.000004', relay_log_pos=1014;
|
||||
select * from t2;
|
||||
START SLAVE UNTIL RELAY_LOG_FILE='slave-relay-bin.000002', RELAY_LOG_POS=relay_pos_insert1_t2
|
||||
SELECT * FROM t2;
|
||||
n
|
||||
1
|
||||
2
|
||||
|
@ -113,10 +114,10 @@ SHOW SLAVE STATUS;
|
|||
Slave_IO_State #
|
||||
Master_Host 127.0.0.1
|
||||
Master_User root
|
||||
Master_Port MASTER_PORT
|
||||
Master_Port #
|
||||
Connect_Retry 1
|
||||
Master_Log_File master-bin.000001
|
||||
Read_Master_Log_Pos 1161
|
||||
Read_Master_Log_Pos #
|
||||
Relay_Log_File #
|
||||
Relay_Log_Pos #
|
||||
Relay_Master_Log_File master-bin.000001
|
||||
|
@ -131,11 +132,11 @@ Replicate_Wild_Ignore_Table
|
|||
Last_Errno 0
|
||||
Last_Error
|
||||
Skip_Counter 0
|
||||
Exec_Master_Log_Pos 868
|
||||
Exec_Master_Log_Pos MASTER_POS_INSERT1_T2
|
||||
Relay_Log_Space #
|
||||
Until_Condition Relay
|
||||
Until_Log_File slave-relay-bin.000004
|
||||
Until_Log_Pos 1014
|
||||
Until_Log_File slave-relay-bin.000002
|
||||
Until_Log_Pos RELAY_POS_INSERT1_T2
|
||||
Master_SSL_Allowed No
|
||||
Master_SSL_CA_File
|
||||
Master_SSL_CA_Path
|
||||
|
@ -148,17 +149,17 @@ Last_IO_Errno #
|
|||
Last_IO_Error #
|
||||
Last_SQL_Errno 0
|
||||
Last_SQL_Error
|
||||
start slave;
|
||||
START SLAVE;
|
||||
include/stop_slave.inc
|
||||
start slave sql_thread until master_log_file='master-bin.000001', master_log_pos=740;
|
||||
START SLAVE SQL_THREAD UNTIL MASTER_LOG_FILE='master-bin.000001', MASTER_LOG_POS=master_pos_create_t2
|
||||
SHOW SLAVE STATUS;
|
||||
Slave_IO_State #
|
||||
Master_Host 127.0.0.1
|
||||
Master_User root
|
||||
Master_Port MASTER_PORT
|
||||
Master_Port #
|
||||
Connect_Retry 1
|
||||
Master_Log_File master-bin.000001
|
||||
Read_Master_Log_Pos 1161
|
||||
Read_Master_Log_Pos #
|
||||
Relay_Log_File #
|
||||
Relay_Log_Pos #
|
||||
Relay_Master_Log_File master-bin.000001
|
||||
|
@ -173,11 +174,11 @@ Replicate_Wild_Ignore_Table
|
|||
Last_Errno 0
|
||||
Last_Error
|
||||
Skip_Counter 0
|
||||
Exec_Master_Log_Pos 1161
|
||||
Exec_Master_Log_Pos MASTER_POS_DROP_T2
|
||||
Relay_Log_Space #
|
||||
Until_Condition Master
|
||||
Until_Log_File master-bin.000001
|
||||
Until_Log_Pos 740
|
||||
Until_Log_Pos MASTER_POS_CREATE_T2
|
||||
Master_SSL_Allowed No
|
||||
Master_SSL_CA_File
|
||||
Master_SSL_CA_Path
|
||||
|
@ -190,17 +191,17 @@ Last_IO_Errno #
|
|||
Last_IO_Error #
|
||||
Last_SQL_Errno 0
|
||||
Last_SQL_Error
|
||||
start slave until master_log_file='master-bin', master_log_pos=561;
|
||||
START SLAVE UNTIL MASTER_LOG_FILE='master-bin', MASTER_LOG_POS=561;
|
||||
ERROR HY000: Incorrect parameter or combination of parameters for START SLAVE UNTIL
|
||||
start slave until master_log_file='master-bin.000001', master_log_pos=561, relay_log_pos=12;
|
||||
START SLAVE UNTIL MASTER_LOG_FILE='master-bin.000001', MASTER_LOG_POS=561, RELAY_LOG_POS=12;
|
||||
ERROR HY000: Incorrect parameter or combination of parameters for START SLAVE UNTIL
|
||||
start slave until master_log_file='master-bin.000001';
|
||||
START SLAVE UNTIL MASTER_LOG_FILE='master-bin.000001';
|
||||
ERROR HY000: Incorrect parameter or combination of parameters for START SLAVE UNTIL
|
||||
start slave until relay_log_file='slave-relay-bin.000002';
|
||||
START SLAVE UNTIL RELAY_LOG_FILE='slave-relay-bin.000009';
|
||||
ERROR HY000: Incorrect parameter or combination of parameters for START SLAVE UNTIL
|
||||
start slave until relay_log_file='slave-relay-bin.000002', master_log_pos=561;
|
||||
START SLAVE UNTIL RELAY_LOG_FILE='slave-relay-bin.000002', MASTER_LOG_POS=561;
|
||||
ERROR HY000: Incorrect parameter or combination of parameters for START SLAVE UNTIL
|
||||
start slave;
|
||||
start slave until master_log_file='master-bin.000001', master_log_pos=740;
|
||||
START SLAVE;
|
||||
START SLAVE UNTIL MASTER_LOG_FILE='master-bin.000001', MASTER_LOG_POS=740;
|
||||
Warnings:
|
||||
Note 1254 Slave is already running
|
||||
|
|
|
@ -2,76 +2,115 @@
|
|||
-- source include/have_binlog_format_row.inc
|
||||
-- source include/master-slave.inc
|
||||
|
||||
# Test is dependent on binlog positions
|
||||
# Note: The test is dependent on binlog positions
|
||||
|
||||
# prepare version for substitutions
|
||||
let $VERSION=`select version()`;
|
||||
|
||||
# stop slave before he will start replication also sync with master
|
||||
# for avoiding undetermenistic behaviour
|
||||
# Create some events on master
|
||||
connection master;
|
||||
CREATE TABLE t1(n INT NOT NULL AUTO_INCREMENT PRIMARY KEY);
|
||||
INSERT INTO t1 VALUES (1),(2),(3),(4);
|
||||
DROP TABLE t1;
|
||||
# Save master log postion for query DROP TABLE t1
|
||||
save_master_pos;
|
||||
let $master_pos_drop_t1= query_get_value(SHOW BINLOG EVENTS, Pos, 7);
|
||||
|
||||
CREATE TABLE t2(n INT NOT NULL AUTO_INCREMENT PRIMARY KEY);
|
||||
# Save master log postion for query CREATE TABLE t2
|
||||
save_master_pos;
|
||||
let $master_pos_create_t2= query_get_value(SHOW BINLOG EVENTS, Pos, 8);
|
||||
|
||||
INSERT INTO t2 VALUES (1),(2);
|
||||
save_master_pos;
|
||||
# Save master log postion for query INSERT INTO t2 VALUES (1),(2);
|
||||
let $master_pos_insert1_t2= query_get_value(SHOW BINLOG EVENTS, End_log_pos, 12);
|
||||
sync_slave_with_master;
|
||||
|
||||
# Save relay log postion for query INSERT INTO t2 VALUES (1),(2);
|
||||
let $relay_pos_insert1_t2= query_get_value(show slave status, Relay_Log_Pos, 1);
|
||||
|
||||
connection master;
|
||||
INSERT INTO t2 VALUES (3),(4);
|
||||
DROP TABLE t2;
|
||||
# Save master log postion for query INSERT INTO t2 VALUES (1),(2);
|
||||
let $master_pos_drop_t2= query_get_value(SHOW BINLOG EVENTS, End_log_pos, 17);
|
||||
sync_slave_with_master;
|
||||
|
||||
--source include/stop_slave.inc
|
||||
# Reset slave.
|
||||
RESET SLAVE;
|
||||
--disable_query_log
|
||||
eval CHANGE MASTER TO MASTER_USER='root', MASTER_CONNECT_RETRY=1, MASTER_HOST='127.0.0.1', MASTER_PORT=$MASTER_MYPORT;
|
||||
--enable_query_log
|
||||
|
||||
# Try to replicate all queries until drop of t1
|
||||
connection slave;
|
||||
echo START SLAVE UNTIL MASTER_LOG_FILE='master-bin.000001', MASTER_LOG_POS=master_pos_drop_t1;
|
||||
--disable_query_log
|
||||
eval START SLAVE UNTIL MASTER_LOG_FILE='master-bin.000001', MASTER_LOG_POS=$master_pos_drop_t1;
|
||||
--enable_query_log
|
||||
--source include/wait_for_slave_sql_to_stop.inc
|
||||
|
||||
# Here table should be still not deleted
|
||||
SELECT * FROM t1;
|
||||
--replace_result $master_pos_drop_t1 MASTER_POS_DROP_T1
|
||||
--replace_column 1 # 4 # 7 # 8 # 9 # 16 # 23 # 33 # 35 # 36 #
|
||||
query_vertical SHOW SLAVE STATUS;
|
||||
|
||||
# This should fail right after start
|
||||
START SLAVE UNTIL MASTER_LOG_FILE='master-no-such-bin.000001', MASTER_LOG_POS=291;
|
||||
--source include/wait_for_slave_sql_to_stop.inc
|
||||
# again this table should be still not deleted
|
||||
SELECT * FROM t1;
|
||||
--replace_result $master_pos_drop_t1 MASTER_POS_DROP_T1
|
||||
--replace_column 1 # 4 # 7 # 8 # 9 # 16 # 23 # 33 # 35 # 36 #
|
||||
query_vertical SHOW SLAVE STATUS;
|
||||
|
||||
# Try replicate all up to and not including the second insert to t2;
|
||||
echo START SLAVE UNTIL RELAY_LOG_FILE='slave-relay-bin.000002', RELAY_LOG_POS=relay_pos_insert1_t2;
|
||||
--disable_query_log
|
||||
eval START SLAVE UNTIL RELAY_LOG_FILE='slave-relay-bin.000002', RELAY_LOG_POS=$relay_pos_insert1_t2;
|
||||
--enable_query_log
|
||||
--source include/wait_for_slave_sql_to_stop.inc
|
||||
SELECT * FROM t2;
|
||||
--replace_result $relay_pos_insert1_t2 RELAY_POS_INSERT1_T2 $master_pos_insert1_t2 MASTER_POS_INSERT1_T2
|
||||
--replace_column 1 # 4 # 7 # 8 # 9 # 16 # 23 # 33 # 35 # 36 #
|
||||
query_vertical SHOW SLAVE STATUS;
|
||||
|
||||
# clean up
|
||||
START SLAVE;
|
||||
--source include/wait_for_slave_to_start.inc
|
||||
connection master;
|
||||
sync_slave_with_master;
|
||||
--source include/stop_slave.inc
|
||||
|
||||
connection master;
|
||||
# create some events on master
|
||||
create table t1(n int not null auto_increment primary key);
|
||||
insert into t1 values (1),(2),(3),(4);
|
||||
drop table t1;
|
||||
create table t2(n int not null auto_increment primary key);
|
||||
insert into t2 values (1),(2);
|
||||
insert into t2 values (3),(4);
|
||||
drop table t2;
|
||||
|
||||
# try to replicate all queries until drop of t1
|
||||
connection slave;
|
||||
start slave until master_log_file='master-bin.000001', master_log_pos=311;
|
||||
--source include/wait_for_slave_sql_to_stop.inc
|
||||
# here table should be still not deleted
|
||||
select * from t1;
|
||||
source include/show_slave_status.inc;
|
||||
|
||||
# this should fail right after start
|
||||
start slave until master_log_file='master-no-such-bin.000001', master_log_pos=291;
|
||||
--source include/wait_for_slave_sql_to_stop.inc
|
||||
# again this table should be still not deleted
|
||||
select * from t1;
|
||||
source include/show_slave_status.inc;
|
||||
|
||||
# try replicate all up to and not including the second insert to t2;
|
||||
start slave until relay_log_file='slave-relay-bin.000004', relay_log_pos=1014;
|
||||
--source include/wait_for_slave_sql_to_stop.inc
|
||||
select * from t2;
|
||||
source include/show_slave_status.inc;
|
||||
|
||||
# clean up
|
||||
start slave;
|
||||
connection master;
|
||||
save_master_pos;
|
||||
connection slave;
|
||||
sync_with_master;
|
||||
--source include/stop_slave.inc
|
||||
|
||||
# this should stop immediately as we are already there
|
||||
start slave sql_thread until master_log_file='master-bin.000001', master_log_pos=740;
|
||||
--let $slave_param= Until_Log_Pos
|
||||
--let $slave_param_value= 740
|
||||
# This should stop immediately as we are already there
|
||||
echo START SLAVE SQL_THREAD UNTIL MASTER_LOG_FILE='master-bin.000001', MASTER_LOG_POS=master_pos_create_t2;
|
||||
--disable_query_log
|
||||
eval START SLAVE SQL_THREAD UNTIL MASTER_LOG_FILE='master-bin.000001', MASTER_LOG_POS=$master_pos_create_t2;
|
||||
--enable_query_log
|
||||
let $slave_param= Until_Log_Pos;
|
||||
let $slave_param_value= $master_pos_create_t2;
|
||||
--source include/wait_for_slave_param.inc
|
||||
--source include/wait_for_slave_sql_to_stop.inc
|
||||
# here the sql slave thread should be stopped
|
||||
--replace_result bin.000005 bin.000004 bin.000006 bin.000004 bin.000007 bin.000004
|
||||
source include/show_slave_status.inc;
|
||||
--replace_result $master_pos_create_t2 MASTER_POS_CREATE_T2 $master_pos_drop_t2 MASTER_POS_DROP_T2
|
||||
--replace_column 1 # 4 # 7 # 8 # 9 # 16 # 23 # 33 # 35 # 36 #
|
||||
query_vertical SHOW SLAVE STATUS;
|
||||
|
||||
#testing various error conditions
|
||||
--error 1277
|
||||
start slave until master_log_file='master-bin', master_log_pos=561;
|
||||
START SLAVE UNTIL MASTER_LOG_FILE='master-bin', MASTER_LOG_POS=561;
|
||||
--error 1277
|
||||
start slave until master_log_file='master-bin.000001', master_log_pos=561, relay_log_pos=12;
|
||||
START SLAVE UNTIL MASTER_LOG_FILE='master-bin.000001', MASTER_LOG_POS=561, RELAY_LOG_POS=12;
|
||||
--error 1277
|
||||
start slave until master_log_file='master-bin.000001';
|
||||
START SLAVE UNTIL MASTER_LOG_FILE='master-bin.000001';
|
||||
--error 1277
|
||||
start slave until relay_log_file='slave-relay-bin.000002';
|
||||
START SLAVE UNTIL RELAY_LOG_FILE='slave-relay-bin.000009';
|
||||
--error 1277
|
||||
start slave until relay_log_file='slave-relay-bin.000002', master_log_pos=561;
|
||||
START SLAVE UNTIL RELAY_LOG_FILE='slave-relay-bin.000002', MASTER_LOG_POS=561;
|
||||
# Warning should be given for second command
|
||||
start slave;
|
||||
start slave until master_log_file='master-bin.000001', master_log_pos=740;
|
||||
START SLAVE;
|
||||
START SLAVE UNTIL MASTER_LOG_FILE='master-bin.000001', MASTER_LOG_POS=740;
|
||||
|
|
|
@ -10,5 +10,4 @@
|
|||
#
|
||||
##############################################################################
|
||||
kill : Bug#37780 2008-12-03 HHunger need some changes to be robust enough for pushbuild.
|
||||
query_cache_28249 : Bug#41098 Query Cache returns wrong result with concurrent insert
|
||||
innodb_bug39438 : BUG#42383 2009-01-28 lsoares "This fails in embedded and on windows. Note that this test is not run on windows and on embedded in PB for main trees currently"
|
||||
|
|
77
mysql-test/t/innodb_bug42419.test
Normal file
77
mysql-test/t/innodb_bug42419.test
Normal file
|
@ -0,0 +1,77 @@
|
|||
#
|
||||
# Testcase for InnoDB
|
||||
# Bug#42419 Server crash with "Pure virtual method called" on two concurrent connections
|
||||
#
|
||||
|
||||
--source include/have_innodb.inc
|
||||
|
||||
let $innodb_lock_wait_timeout= query_get_value(SHOW VARIABLES LIKE 'innodb_lock_wait_timeout%', Value, 1);
|
||||
if (`SELECT $innodb_lock_wait_timeout < 10`)
|
||||
{
|
||||
--echo # innodb_lock_wait_timeout must be >= 10 seconds
|
||||
--echo # so that this test can work all time fine on an overloaded testing box
|
||||
SHOW VARIABLES LIKE 'innodb_lock_wait_timeout';
|
||||
exit;
|
||||
}
|
||||
|
||||
# Save the initial number of concurrent sessions
|
||||
--source include/count_sessions.inc
|
||||
|
||||
# First session
|
||||
connection default;
|
||||
|
||||
|
||||
--enable_warnings
|
||||
CREATE TABLE t1 (a INT AUTO_INCREMENT PRIMARY KEY, b INT) ENGINE = InnoDB;
|
||||
|
||||
INSERT INTO t1 VALUES (1,1),(2,2),(3,3);
|
||||
COMMIT;
|
||||
SET AUTOCOMMIT = 0;
|
||||
|
||||
CREATE TEMPORARY TABLE t1_tmp ( b INT );
|
||||
|
||||
INSERT INTO t1_tmp (b) SELECT b FROM t1 WHERE a = 3;
|
||||
INSERT INTO t1_tmp (b) SELECT b FROM t1 WHERE a = 2;
|
||||
|
||||
# Second session
|
||||
connect (user2,localhost,root,,,$MASTER_MYPORT,$MASTER_MYSOCK);
|
||||
|
||||
SET AUTOCOMMIT = 0;
|
||||
|
||||
CREATE TEMPORARY TABLE t2_tmp ( a int, new_a int );
|
||||
INSERT INTO t2_tmp VALUES (1,51),(2,52),(3,53);
|
||||
|
||||
UPDATE t1 SET a = (SELECT new_a FROM t2_tmp WHERE t2_tmp.a = t1.a) WHERE a = 1;
|
||||
send
|
||||
UPDATE t1 SET a = (SELECT new_a FROM t2_tmp WHERE t2_tmp.a = t1.a) WHERE a = 2;
|
||||
|
||||
# The last update will wait for a lock held by the first session
|
||||
|
||||
# First session
|
||||
connection default;
|
||||
|
||||
# Poll till the UPDATE of the second session waits for lock
|
||||
let $show_statement= SHOW PROCESSLIST;
|
||||
let $field= State;
|
||||
let $condition= = 'Updating';
|
||||
--source include/wait_show_condition.inc
|
||||
|
||||
# If the testing box is overloadeded and innodb_lock_wait_timeout is too small
|
||||
# we might get here ER_LOCK_WAIT_TIMEOUT.
|
||||
--error ER_LOCK_DEADLOCK
|
||||
INSERT INTO t1_tmp (b) SELECT b FROM t1 WHERE a = 1;
|
||||
|
||||
# Second session
|
||||
connection user2;
|
||||
--echo Reap the server message for connection user2 UPDATE t1 ...
|
||||
reap;
|
||||
|
||||
# The server crashed when executing this UPDATE or the succeeding SQL command.
|
||||
UPDATE t1 SET a = (SELECT new_a FROM t2_tmp WHERE t2_tmp.a = t1.a) WHERE a = 3;
|
||||
|
||||
connection default;
|
||||
disconnect user2;
|
||||
DROP TABLE t1;
|
||||
|
||||
# Wait till all disconnects are completed
|
||||
--source include/wait_until_count_sessions.inc
|
|
@ -1 +1 @@
|
|||
--innodb-lock-wait-timeout=3
|
||||
--innodb-lock-wait-timeout=2
|
||||
|
|
|
@ -54,57 +54,6 @@ CREATE INDEX i1 on t1 (a(3));
|
|||
SELECT * FROM t1 WHERE a = 'abcde';
|
||||
DROP TABLE t1;
|
||||
|
||||
#
|
||||
# Bug #42419: Server crash with "Pure virtual method called" on two
|
||||
# concurrent connections
|
||||
#
|
||||
|
||||
connect (c1, localhost, root,,);
|
||||
connect (c2, localhost, root,,);
|
||||
|
||||
CREATE TABLE t1 (a INT NOT NULL AUTO_INCREMENT PRIMARY KEY, b INT)
|
||||
ENGINE=InnoDB;
|
||||
|
||||
INSERT INTO t1 VALUES (1,1),(2,2),(3,3);
|
||||
|
||||
connection c1;
|
||||
|
||||
SET AUTOCOMMIT = 0;
|
||||
|
||||
CREATE TEMPORARY TABLE t1_tmp (b INT);
|
||||
|
||||
INSERT INTO t1_tmp SELECT b FROM t1 WHERE a = 3;
|
||||
INSERT INTO t1_tmp SELECT b FROM t1 WHERE a = 2;
|
||||
|
||||
connection c2;
|
||||
|
||||
SET AUTOCOMMIT = 0;
|
||||
|
||||
CREATE TEMPORARY TABLE t2_tmp ( a INT, new_a INT);
|
||||
INSERT INTO t2_tmp VALUES (1,51),(2,52),(3,53);
|
||||
|
||||
UPDATE t1 SET a = (SELECT new_a FROM t2_tmp WHERE t2_tmp.a = t1.a) WHERE a = 1;
|
||||
|
||||
--send
|
||||
UPDATE t1 SET a = (SELECT new_a FROM t2_tmp WHERE t2_tmp.a = t1.a) WHERE a = 2;
|
||||
|
||||
--sleep 3
|
||||
|
||||
connection c1;
|
||||
|
||||
--error ER_LOCK_DEADLOCK
|
||||
INSERT INTO t1_tmp SELECT b FROM t1 WHERE a = 1;
|
||||
|
||||
connection c2;
|
||||
|
||||
--reap
|
||||
UPDATE t1 SET a = (SELECT new_a FROM t2_tmp WHERE t2_tmp.a = t1.a) WHERE a = 3;
|
||||
|
||||
connection default;
|
||||
disconnect c1;
|
||||
disconnect c2;
|
||||
DROP TABLE t1;
|
||||
|
||||
#
|
||||
# Bug #37742: HA_EXTRA_KEYREAD flag is set when key contains only prefix of
|
||||
# requested column
|
||||
|
|
|
@ -16,6 +16,14 @@ SET @old_general_log= @@global.general_log;
|
|||
drop table if exists t1, t2;
|
||||
--enable_warnings
|
||||
|
||||
#
|
||||
# Bug#36001: Partitions: spelling and using some error messages
|
||||
#
|
||||
--error ER_FOREIGN_KEY_ON_PARTITIONED
|
||||
CREATE TABLE t1 (a INT, FOREIGN KEY (a) REFERENCES t0 (a))
|
||||
ENGINE=MyISAM
|
||||
PARTITION BY HASH (a);
|
||||
|
||||
#
|
||||
# Bug#40954: Crash if range search and order by.
|
||||
#
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#
|
||||
# Simple test for the erroneos create statements using the
|
||||
# Simple test for the erroneos statements using the
|
||||
# partition storage engine
|
||||
#
|
||||
-- source include/have_partition.inc
|
||||
|
@ -7,6 +7,19 @@
|
|||
--disable_warnings
|
||||
drop table if exists t1;
|
||||
--enable_warnings
|
||||
|
||||
#
|
||||
# Bug#38719: Partitioning returns a different error code for a
|
||||
# duplicate key error
|
||||
CREATE TABLE t1 (a INTEGER NOT NULL, PRIMARY KEY (a));
|
||||
-- error ER_DUP_ENTRY
|
||||
INSERT INTO t1 VALUES (1),(1);
|
||||
DROP TABLE t1;
|
||||
CREATE TABLE t1 (a INTEGER NOT NULL, PRIMARY KEY (a))
|
||||
PARTITION BY KEY (a) PARTITIONS 2;
|
||||
-- error ER_DUP_ENTRY
|
||||
INSERT INTO t1 VALUES (1),(1);
|
||||
DROP TABLE t1;
|
||||
|
||||
#
|
||||
# Bug#31931: Mix of handlers error message
|
||||
|
|
|
@ -44,3 +44,71 @@ set global query_cache_size= 0;
|
|||
use test;
|
||||
drop table t1;
|
||||
|
||||
#
|
||||
# Bug#41098: Query Cache returns wrong result with concurrent insert
|
||||
#
|
||||
|
||||
SET @old_concurrent_insert= @@GLOBAL.concurrent_insert;
|
||||
SET @old_query_cache_size= @@GLOBAL.query_cache_size;
|
||||
|
||||
--disable_warnings
|
||||
DROP TABLE IF EXISTS t1, t2;
|
||||
--enable_warnings
|
||||
CREATE TABLE t1 (a INT);
|
||||
CREATE TABLE t2 (a INT);
|
||||
INSERT INTO t1 VALUES (1),(2),(3);
|
||||
|
||||
SET GLOBAL concurrent_insert= 1;
|
||||
SET GLOBAL query_cache_size= 1024*512;
|
||||
SET GLOBAL query_cache_type= ON;
|
||||
|
||||
connect(con1,localhost,root,,test,,);
|
||||
connect(con2,localhost,root,,test,,);
|
||||
|
||||
connection con1;
|
||||
--echo # Switch to connection con1
|
||||
SET SESSION debug='+d,wait_after_query_cache_invalidate';
|
||||
--echo # Send concurrent insert, will wait in the query cache table invalidate
|
||||
--send INSERT INTO t1 VALUES (4)
|
||||
|
||||
connection default;
|
||||
--echo # Switch to connection default
|
||||
--echo # Wait for concurrent insert to reach the debug point
|
||||
let $wait_condition=
|
||||
SELECT COUNT(*) = 1 FROM INFORMATION_SCHEMA.PROCESSLIST
|
||||
WHERE STATE = "wait_after_query_cache_invalidate" AND
|
||||
INFO = "INSERT INTO t1 VALUES (4)";
|
||||
--source include/wait_condition.inc
|
||||
|
||||
connection con2;
|
||||
--echo # Switch to connection con2
|
||||
--echo # Send SELECT that shouldn't be cached
|
||||
SELECT * FROM t1;
|
||||
|
||||
connection default;
|
||||
--echo # Switch to connection default
|
||||
--echo # Notify the concurrent insert to proceed
|
||||
SELECT ID FROM INFORMATION_SCHEMA.PROCESSLIST
|
||||
WHERE STATE = 'wait_after_query_cache_invalidate' INTO @thread_id;
|
||||
KILL QUERY @thread_id;
|
||||
|
||||
connection con1;
|
||||
--echo # Switch to connection con1
|
||||
--echo # Gather insert result
|
||||
--reap
|
||||
SHOW STATUS LIKE "Qcache_queries_in_cache";
|
||||
--echo # Test that it's cacheable
|
||||
SELECT * FROM t1;
|
||||
SHOW STATUS LIKE "Qcache_queries_in_cache";
|
||||
|
||||
--echo # Disconnect
|
||||
disconnect con1;
|
||||
disconnect con2;
|
||||
|
||||
connection default;
|
||||
--echo # Restore defaults
|
||||
RESET QUERY CACHE;
|
||||
DROP TABLE t1,t2;
|
||||
SET GLOBAL concurrent_insert= DEFAULT;
|
||||
SET GLOBAL query_cache_size= DEFAULT;
|
||||
SET GLOBAL query_cache_type= DEFAULT;
|
||||
|
|
|
@ -2932,7 +2932,7 @@ uint handler::get_dup_key(int error)
|
|||
if (error == HA_ERR_FOUND_DUPP_KEY || error == HA_ERR_FOREIGN_DUPLICATE_KEY ||
|
||||
error == HA_ERR_FOUND_DUPP_UNIQUE || error == HA_ERR_NULL_IN_SPATIAL ||
|
||||
error == HA_ERR_DROP_INDEX_FK)
|
||||
info(HA_STATUS_ERRKEY | HA_STATUS_NO_LOCK);
|
||||
table->file->info(HA_STATUS_ERRKEY | HA_STATUS_NO_LOCK);
|
||||
DBUG_RETURN(table->file->errkey);
|
||||
}
|
||||
|
||||
|
|
|
@ -1758,7 +1758,6 @@ bool agg_item_set_converter(DTCollation &coll, const char *fname,
|
|||
bool agg_item_charsets(DTCollation &coll, const char *fname,
|
||||
Item **args, uint nargs, uint flags, int item_sep)
|
||||
{
|
||||
Item **arg, *safe_args[2];
|
||||
if (agg_item_collations(coll, fname, args, nargs, flags, item_sep))
|
||||
return TRUE;
|
||||
|
||||
|
|
|
@ -5775,9 +5775,9 @@ ER_PARTITION_MGMT_ON_NONPARTITIONED
|
|||
ger "Partitionsverwaltung einer nicht partitionierten Tabelle ist nicht möglich"
|
||||
swe "Partitioneringskommando på en opartitionerad tabell är inte möjligt"
|
||||
ER_FOREIGN_KEY_ON_PARTITIONED
|
||||
eng "Foreign key condition is not yet supported in conjunction with partitioning"
|
||||
eng "Foreign key clause is not yet supported in conjunction with partitioning"
|
||||
ger "Fremdschlüssel-Beschränkungen sind im Zusammenhang mit Partitionierung nicht zulässig"
|
||||
swe "Foreign key villkor är inte ännu implementerad i kombination med partitionering"
|
||||
swe "Foreign key klausul är inte ännu implementerad i kombination med partitionering"
|
||||
ER_DROP_PARTITION_NON_EXISTENT
|
||||
eng "Error in list of partitions to %-.64s"
|
||||
ger "Fehler in der Partitionsliste bei %-.64s"
|
||||
|
@ -5791,13 +5791,13 @@ ER_COALESCE_ONLY_ON_HASH_PARTITION
|
|||
ger "COALESCE PARTITION kann nur auf HASH- oder KEY-Partitionen benutzt werden"
|
||||
swe "COALESCE PARTITION kan bara användas på HASH/KEY partitioner"
|
||||
ER_REORG_HASH_ONLY_ON_SAME_NO
|
||||
eng "REORGANISE PARTITION can only be used to reorganise partitions not to change their numbers"
|
||||
eng "REORGANIZE PARTITION can only be used to reorganize partitions not to change their numbers"
|
||||
ger "REORGANIZE PARTITION kann nur zur Reorganisation von Partitionen verwendet werden, nicht, um ihre Nummern zu ändern"
|
||||
swe "REORGANISE PARTITION kan bara användas för att omorganisera partitioner, inte för att ändra deras antal"
|
||||
swe "REORGANIZE PARTITION kan bara användas för att omorganisera partitioner, inte för att ändra deras antal"
|
||||
ER_REORG_NO_PARAM_ERROR
|
||||
eng "REORGANISE PARTITION without parameters can only be used on auto-partitioned tables using HASH PARTITIONs"
|
||||
eng "REORGANIZE PARTITION without parameters can only be used on auto-partitioned tables using HASH PARTITIONs"
|
||||
ger "REORGANIZE PARTITION ohne Parameter kann nur für auto-partitionierte Tabellen verwendet werden, die HASH-Partitionierung benutzen"
|
||||
swe "REORGANISE PARTITION utan parametrar kan bara användas på auto-partitionerade tabeller som använder HASH partitionering"
|
||||
swe "REORGANIZE PARTITION utan parametrar kan bara användas på auto-partitionerade tabeller som använder HASH partitionering"
|
||||
ER_ONLY_ON_RANGE_LIST_PARTITION
|
||||
eng "%-.64s PARTITION can only be used on RANGE/LIST partitions"
|
||||
ger "%-.64s PARTITION kann nur für RANGE- oder LIST-Partitionen verwendet werden"
|
||||
|
@ -5815,7 +5815,7 @@ ER_COALESCE_PARTITION_NO_PARTITION
|
|||
ger "Zumindest eine Partition muss mit COALESCE PARTITION zusammengefügt werden"
|
||||
swe "Åtminstone en partition måste slås ihop vid COALESCE PARTITION"
|
||||
ER_REORG_PARTITION_NOT_EXIST
|
||||
eng "More partitions to reorganise than there are partitions"
|
||||
eng "More partitions to reorganize than there are partitions"
|
||||
ger "Es wurde versucht, mehr Partitionen als vorhanden zu reorganisieren"
|
||||
swe "Fler partitioner att reorganisera än det finns partitioner"
|
||||
ER_SAME_NAME_PARTITION
|
||||
|
@ -5827,7 +5827,7 @@ ER_NO_BINLOG_ERROR
|
|||
ger "Es es nicht erlaubt, bei diesem Befehl binlog abzuschalten"
|
||||
swe "Det är inte tillåtet att stänga av binlog på detta kommando"
|
||||
ER_CONSECUTIVE_REORG_PARTITIONS
|
||||
eng "When reorganising a set of partitions they must be in consecutive order"
|
||||
eng "When reorganizing a set of partitions they must be in consecutive order"
|
||||
ger "Bei der Reorganisation eines Satzes von Partitionen müssen diese in geordneter Reihenfolge vorliegen"
|
||||
swe "När ett antal partitioner omorganiseras måste de vara i konsekutiv ordning"
|
||||
ER_REORG_OUTSIDE_RANGE
|
||||
|
|
|
@ -1518,6 +1518,9 @@ void Query_cache::invalidate(THD *thd, TABLE_LIST *tables_used,
|
|||
invalidate_table(thd, tables_used);
|
||||
}
|
||||
|
||||
DBUG_EXECUTE_IF("wait_after_query_cache_invalidate",
|
||||
debug_wait_for_kill("wait_after_query_cache_invalidate"););
|
||||
|
||||
DBUG_VOID_RETURN;
|
||||
}
|
||||
|
||||
|
|
|
@ -904,20 +904,6 @@ bool mysql_insert(THD *thd,TABLE_LIST *table_list,
|
|||
}
|
||||
DBUG_ASSERT(transactional_table || !changed ||
|
||||
thd->transaction.stmt.modified_non_trans_table);
|
||||
|
||||
if (thd->lock)
|
||||
{
|
||||
/*
|
||||
Invalidate the table in the query cache if something changed
|
||||
after unlocking when changes become fisible.
|
||||
TODO: this is workaround. right way will be move invalidating in
|
||||
the unlock procedure.
|
||||
*/
|
||||
if (lock_type == TL_WRITE_CONCURRENT_INSERT && changed)
|
||||
{
|
||||
query_cache_invalidate3(thd, table_list, 1);
|
||||
}
|
||||
}
|
||||
}
|
||||
thd_proc_info(thd, "end");
|
||||
/*
|
||||
|
|
|
@ -3321,7 +3321,7 @@ bool mysql_create_table_no_lock(THD *thd,
|
|||
if (key->type == Key::FOREIGN_KEY &&
|
||||
!part_info->is_auto_partitioned)
|
||||
{
|
||||
my_error(ER_CANNOT_ADD_FOREIGN, MYF(0));
|
||||
my_error(ER_FOREIGN_KEY_ON_PARTITIONED, MYF(0));
|
||||
goto err;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2152,6 +2152,15 @@ my_bool ha_myisam::register_query_cache_table(THD *thd, char *table_name,
|
|||
}
|
||||
}
|
||||
|
||||
/*
|
||||
This query execution might have started after the query cache was flushed
|
||||
by a concurrent INSERT. In this case, don't cache this statement as the
|
||||
data file length difference might not be visible yet if the tables haven't
|
||||
been unlocked by the concurrent insert thread.
|
||||
*/
|
||||
if (file->state->uncacheable)
|
||||
DBUG_RETURN(FALSE);
|
||||
|
||||
/* It is ok to try to cache current statement. */
|
||||
DBUG_RETURN(TRUE);
|
||||
}
|
||||
|
|
|
@ -293,6 +293,8 @@ void mi_get_status(void* param, int concurrent_insert)
|
|||
info->save_state=info->s->state.state;
|
||||
info->state= &info->save_state;
|
||||
info->append_insert_at_end= concurrent_insert;
|
||||
if (concurrent_insert)
|
||||
info->s->state.state.uncacheable= TRUE;
|
||||
DBUG_VOID_RETURN;
|
||||
}
|
||||
|
||||
|
|
|
@ -38,6 +38,7 @@ typedef struct st_mi_status_info
|
|||
my_off_t key_file_length;
|
||||
my_off_t data_file_length;
|
||||
ha_checksum checksum;
|
||||
my_bool uncacheable; /* Active concurrent insert */
|
||||
} MI_STATUS_INFO;
|
||||
|
||||
typedef struct st_mi_state_info
|
||||
|
|
Loading…
Add table
Reference in a new issue