mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 11:01:52 +01:00
automerge
This commit is contained in:
commit
93dac5c581
73 changed files with 1412 additions and 785 deletions
|
@ -2,6 +2,13 @@
|
|||
# By JBM 2006-02-16 So that the code is not repeated #
|
||||
# in test cases and can be reused. #
|
||||
######################################################
|
||||
|
||||
# Bug#41307: Tests using include/ndb_backup.inc won't work on Windows due to
|
||||
# 'grep' call
|
||||
# This test is disabled on Windows via the next line until the above bug is
|
||||
# resolved
|
||||
--source include/not_windows.inc
|
||||
|
||||
--exec $NDB_MGM --no-defaults --ndb-connectstring="$NDB_CONNECTSTRING" -e "start backup" >> $NDB_TOOLS_OUTPUT
|
||||
|
||||
# there is no neat way to find the backupid, this is a hack to find it...
|
||||
|
|
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;
|
|
@ -395,7 +395,14 @@ flush logs;
|
|||
INSERT INTO t1 VALUES ('0123456789');
|
||||
flush logs;
|
||||
DROP TABLE t1;
|
||||
# Query thread_id=REMOVED exec_time=REMOVED error_code=REMOVED
|
||||
We expect this value to be 1
|
||||
The bug being tested was that 'Query' lines were not preceded by '#'
|
||||
If the line is in the table, it had to have been preceded by a '#'
|
||||
|
||||
SELECT COUNT(*) AS `BUG#28293_expect_1` FROM patch WHERE a LIKE '%Query%';
|
||||
BUG#28293_expect_1
|
||||
1
|
||||
DROP TABLE patch;
|
||||
flush logs;
|
||||
create table t1(a int);
|
||||
insert into t1 values(connection_id());
|
||||
|
|
|
@ -215,7 +215,6 @@ source database
|
|||
"MySQL: The world's most popular ;open source database"
|
||||
echo message echo message
|
||||
|
||||
mysqltest: At line 1: command "false" failed
|
||||
mysqltest: At line 1: Missing argument in exec
|
||||
MySQL
|
||||
"MySQL"
|
||||
|
@ -383,7 +382,6 @@ mysqltest: At line 1: The argument to dec must be a variable (start with $)
|
|||
mysqltest: At line 1: End of line junk detected: "1000"
|
||||
mysqltest: At line 1: Missing arguments to system, nothing to do!
|
||||
mysqltest: At line 1: Missing arguments to system, nothing to do!
|
||||
mysqltest: At line 1: system command 'false' failed
|
||||
system command 'NonExistsinfComamdn 2> /dev/null' failed
|
||||
test
|
||||
test2
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -12,9 +12,7 @@ GRANT CREATE, TRIGGER ON mysqltest_db1.* TO mysqltest_dfn@localhost;
|
|||
---> connection: wl2818_definer_con
|
||||
CREATE TABLE t1(num_value INT);
|
||||
CREATE TABLE t2(user_str TEXT);
|
||||
CREATE TRIGGER wl2818_trg1 BEFORE INSERT ON t1
|
||||
FOR EACH ROW
|
||||
INSERT INTO t2 VALUES(CURRENT_USER());
|
||||
CREATE TRIGGER wl2818_trg1 BEFORE INSERT ON t1 FOR EACH ROW INSERT INTO t2 VALUES(CURRENT_USER());
|
||||
|
||||
---> patching t1.TRG...
|
||||
|
||||
|
|
|
@ -1,6 +1,12 @@
|
|||
-- source include/have_ndb.inc
|
||||
-- source include/not_embedded.inc
|
||||
|
||||
# Bug#41308: Test main.ndb_autodiscover.test doesn't work on Windows due
|
||||
# to 'grep' calls
|
||||
# Test is currently disabled on Windows via the next line until this bug
|
||||
# can be resolved.
|
||||
--source include/not_windows.inc
|
||||
|
||||
--disable_warnings
|
||||
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9,t10;
|
||||
--enable_warnings
|
||||
|
|
|
@ -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
|
||||
|
|
10
mysql-test/suite/rpl/r/rpl_slave_load_in.result
Normal file
10
mysql-test/suite/rpl/r/rpl_slave_load_in.result
Normal file
|
@ -0,0 +1,10 @@
|
|||
stop slave;
|
||||
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
||||
reset master;
|
||||
reset slave;
|
||||
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
||||
start slave;
|
||||
create table t1(a int not null auto_increment, b int, primary key(a));
|
||||
load data infile '../../std_data/rpl_loaddata.dat' into table t1;
|
||||
Comparing tables master:test.t1 and slave:test.t1
|
||||
drop table t1;
|
26
mysql-test/suite/rpl/r/rpl_temp_table_mix_row.result
Normal file
26
mysql-test/suite/rpl/r/rpl_temp_table_mix_row.result
Normal file
|
@ -0,0 +1,26 @@
|
|||
stop slave;
|
||||
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
||||
reset master;
|
||||
reset slave;
|
||||
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
||||
start slave;
|
||||
==== Initialize ====
|
||||
[on master]
|
||||
CREATE TABLE t1 (a CHAR(48));
|
||||
CREATE TEMPORARY TABLE t1_tmp1(a INT);
|
||||
INSERT INTO t1 VALUES (UUID());
|
||||
[on slave]
|
||||
==== Verify results on slave ====
|
||||
SHOW STATUS LIKE "Slave_open_temp_tables";
|
||||
Variable_name Value
|
||||
Slave_open_temp_tables 1
|
||||
[on master]
|
||||
[on slave]
|
||||
==== Verify results on slave ====
|
||||
SHOW STATUS LIKE "Slave_open_temp_tables";
|
||||
Variable_name Value
|
||||
Slave_open_temp_tables 0
|
||||
==== Clean up ====
|
||||
[on master]
|
||||
DROP TABLE t1;
|
||||
[on slave]
|
|
@ -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;
|
||||
|
|
35
mysql-test/suite/rpl/t/rpl_slave_load_in.test
Normal file
35
mysql-test/suite/rpl/t/rpl_slave_load_in.test
Normal file
|
@ -0,0 +1,35 @@
|
|||
##########################################################################
|
||||
# This test verifies if a slave is able to process a "LOAD DATA INFILE"
|
||||
# event while the "--secure-file-priv" option is set.
|
||||
#
|
||||
# The test is divided in two steps:
|
||||
# 1 - Creates a table and populates it through "LOAD DATA INFILE".
|
||||
# 2 - Compares the master and slave.
|
||||
##########################################################################
|
||||
source include/master-slave.inc;
|
||||
|
||||
##########################################################################
|
||||
# Loading data
|
||||
##########################################################################
|
||||
connection master;
|
||||
|
||||
create table t1(a int not null auto_increment, b int, primary key(a));
|
||||
load data infile '../../std_data/rpl_loaddata.dat' into table t1;
|
||||
|
||||
##########################################################################
|
||||
# Checking Consistency
|
||||
##########################################################################
|
||||
sync_slave_with_master;
|
||||
|
||||
let $diff_table_1=master:test.t1;
|
||||
let $diff_table_2=slave:test.t1;
|
||||
source include/diff_tables.inc;
|
||||
|
||||
##########################################################################
|
||||
# Clean up
|
||||
##########################################################################
|
||||
connection master;
|
||||
|
||||
drop table t1;
|
||||
|
||||
sync_slave_with_master;
|
49
mysql-test/suite/rpl/t/rpl_temp_table_mix_row.test
Normal file
49
mysql-test/suite/rpl/t/rpl_temp_table_mix_row.test
Normal file
|
@ -0,0 +1,49 @@
|
|||
# ==== Purpose ====
|
||||
#
|
||||
# Test that temporary tables are correctly replicated after switching to ROW format in MIX mode.
|
||||
# This test case will test the condition of the bug#40013.
|
||||
# The test step is:
|
||||
# 1: create temp table on connection 'master';
|
||||
# 2: switch to ROW format using 'INSERT INTO t1 VALUES (UUID());'
|
||||
# 3: disconnect 'master' and connect to a new connection 'master1';
|
||||
# 4: sync to slave and check the number of temp tables on slave.
|
||||
#
|
||||
|
||||
source include/master-slave.inc;
|
||||
source include/have_binlog_format_mixed.inc;
|
||||
|
||||
--echo ==== Initialize ====
|
||||
|
||||
--echo [on master]
|
||||
--connection master
|
||||
|
||||
CREATE TABLE t1 (a CHAR(48));
|
||||
CREATE TEMPORARY TABLE t1_tmp1(a INT);
|
||||
INSERT INTO t1 VALUES (UUID());
|
||||
|
||||
--echo [on slave]
|
||||
sync_slave_with_master;
|
||||
|
||||
--echo ==== Verify results on slave ====
|
||||
SHOW STATUS LIKE "Slave_open_temp_tables";
|
||||
|
||||
--echo [on master]
|
||||
--connection master
|
||||
|
||||
disconnect master;
|
||||
--connection master1
|
||||
|
||||
--echo [on slave]
|
||||
sync_slave_with_master;
|
||||
|
||||
--echo ==== Verify results on slave ====
|
||||
SHOW STATUS LIKE "Slave_open_temp_tables";
|
||||
|
||||
--echo ==== Clean up ====
|
||||
|
||||
--echo [on master]
|
||||
--connection master1
|
||||
DROP TABLE t1;
|
||||
|
||||
--echo [on slave]
|
||||
sync_slave_with_master;
|
|
@ -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"
|
||||
|
|
78
mysql-test/t/innodb_bug42419.test
Normal file
78
mysql-test/t/innodb_bug42419.test
Normal file
|
@ -0,0 +1,78 @@
|
|||
#
|
||||
# Testcase for InnoDB
|
||||
# Bug#42419 Server crash with "Pure virtual method called" on two concurrent connections
|
||||
#
|
||||
|
||||
--source include/not_embedded.inc
|
||||
--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
|
|
@ -91,6 +91,7 @@ INSERT INTO foo2 SELECT * FROM foo;
|
|||
|
||||
DROP TABLE foo, bar, foo2;
|
||||
|
||||
|
||||
#
|
||||
# Bug#41348: INSERT INTO tbl SELECT * FROM temp_tbl overwrites locking type of temp table
|
||||
#
|
||||
|
|
|
@ -180,7 +180,7 @@ delimiter ;//
|
|||
flush logs;
|
||||
call p1();
|
||||
drop procedure p1;
|
||||
--error 1305
|
||||
--error ER_SP_DOES_NOT_EXIST
|
||||
call p1();
|
||||
--replace_regex /SQL_LOAD_MB-[0-9]-[0-9]/SQL_LOAD_MB-#-#/
|
||||
--exec $MYSQL_BINLOG --short-form $MYSQLD_DATADIR/master-bin.000008
|
||||
|
@ -232,7 +232,26 @@ flush logs;
|
|||
INSERT INTO t1 VALUES ('0123456789');
|
||||
flush logs;
|
||||
DROP TABLE t1;
|
||||
--exec $MYSQL_BINLOG --hexdump --local-load=$MYSQLTEST_VARDIR/tmp/ $MYSQLD_DATADIR/master-bin.000012 | grep 'Query' | sed 's/[0-9]\{1,\}/REMOVED/g'
|
||||
|
||||
# We create a table, patch, and load the output into it
|
||||
# By using LINES STARTING BY '#' + SELECT WHERE a LIKE 'Query'
|
||||
# We can easily see if a 'Query' line is missing the '#' character
|
||||
# as described in the original bug
|
||||
|
||||
--disable_query_log
|
||||
CREATE TABLE patch (a blob);
|
||||
--exec $MYSQL_BINLOG --hexdump --local-load=$MYSQLTEST_VARDIR/tmp/ $MYSQLD_DATADIR/master-bin.000012 > $MYSQLTEST_VARDIR/tmp/mysqlbinlog_tmp.dat
|
||||
eval LOAD DATA LOCAL INFILE '$MYSQLTEST_VARDIR/tmp/mysqlbinlog_tmp.dat'
|
||||
INTO TABLE patch FIELDS TERMINATED by '' LINES STARTING BY '#';
|
||||
--remove_file $MYSQLTEST_VARDIR/tmp/mysqlbinlog_tmp.dat
|
||||
--enable_query_log
|
||||
|
||||
--echo We expect this value to be 1
|
||||
--echo The bug being tested was that 'Query' lines were not preceded by '#'
|
||||
--echo If the line is in the table, it had to have been preceded by a '#'
|
||||
--echo
|
||||
SELECT COUNT(*) AS `BUG#28293_expect_1` FROM patch WHERE a LIKE '%Query%';
|
||||
DROP TABLE patch;
|
||||
|
||||
#
|
||||
# Bug #29928: incorrect connection_id() restoring from mysqlbinlog out
|
||||
|
|
|
@ -62,7 +62,8 @@ select otto from (select 1 as otto) as t1;
|
|||
--exec echo "select friedrich from (select 1 as otto) as t1;" | $MYSQL_TEST 2>&1
|
||||
|
||||
# expectation = response
|
||||
--error 1054
|
||||
--error ER_BAD_FIELD_ERROR
|
||||
|
||||
select friedrich from (select 1 as otto) as t1;
|
||||
|
||||
# The following unmasked unsuccessful statement must give
|
||||
|
@ -135,14 +136,16 @@ eval select $mysql_errno as "after_successful_stmt_errno" ;
|
|||
#----------------------------------------------------------------------------
|
||||
# check mysql_errno = 1064 after statement with wrong syntax
|
||||
# ----------------------------------------------------------------------------
|
||||
--error 1064
|
||||
--error ER_PARSE_ERROR
|
||||
|
||||
garbage ;
|
||||
eval select $mysql_errno as "after_wrong_syntax_errno" ;
|
||||
|
||||
# ----------------------------------------------------------------------------
|
||||
# check if let $my_var= 'abc' ; affects $mysql_errno
|
||||
# ----------------------------------------------------------------------------
|
||||
--error 1064
|
||||
--error ER_PARSE_ERROR
|
||||
|
||||
garbage ;
|
||||
let $my_var= 'abc' ;
|
||||
eval select $mysql_errno as "after_let_var_equal_value" ;
|
||||
|
@ -150,7 +153,8 @@ eval select $mysql_errno as "after_let_var_equal_value" ;
|
|||
# ----------------------------------------------------------------------------
|
||||
# check if set @my_var= 'abc' ; affects $mysql_errno
|
||||
# ----------------------------------------------------------------------------
|
||||
--error 1064
|
||||
--error ER_PARSE_ERROR
|
||||
|
||||
garbage ;
|
||||
set @my_var= 'abc' ;
|
||||
eval select $mysql_errno as "after_set_var_equal_value" ;
|
||||
|
@ -159,7 +163,8 @@ eval select $mysql_errno as "after_set_var_equal_value" ;
|
|||
# check if the setting of --disable-warnings itself affects $mysql_errno
|
||||
# (May be --<whatever> modifies $mysql_errno.)
|
||||
# ----------------------------------------------------------------------------
|
||||
--error 1064
|
||||
--error ER_PARSE_ERROR
|
||||
|
||||
garbage ;
|
||||
--disable_warnings
|
||||
eval select $mysql_errno as "after_disable_warnings_command" ;
|
||||
|
@ -170,7 +175,8 @@ eval select $mysql_errno as "after_disable_warnings_command" ;
|
|||
# (May be disabled warnings affect $mysql_errno.)
|
||||
# ----------------------------------------------------------------------------
|
||||
drop table if exists t1 ;
|
||||
--error 1064
|
||||
--error ER_PARSE_ERROR
|
||||
|
||||
garbage ;
|
||||
drop table if exists t1 ;
|
||||
eval select $mysql_errno as "after_disable_warnings" ;
|
||||
|
@ -179,21 +185,26 @@ eval select $mysql_errno as "after_disable_warnings" ;
|
|||
# ----------------------------------------------------------------------------
|
||||
# check if masked errors affect $mysql_errno
|
||||
# ----------------------------------------------------------------------------
|
||||
--error 1064
|
||||
--error ER_PARSE_ERROR
|
||||
|
||||
garbage ;
|
||||
--error 1146
|
||||
--error ER_NO_SUCH_TABLE
|
||||
|
||||
select 3 from t1 ;
|
||||
eval select $mysql_errno as "after_minus_masked" ;
|
||||
--error 1064
|
||||
--error ER_PARSE_ERROR
|
||||
|
||||
garbage ;
|
||||
--error 1146
|
||||
--error ER_NO_SUCH_TABLE
|
||||
|
||||
select 3 from t1 ;
|
||||
eval select $mysql_errno as "after_!_masked" ;
|
||||
|
||||
# ----------------------------------------------------------------------------
|
||||
# Will manipulations of $mysql_errno be possible and visible ?
|
||||
# ----------------------------------------------------------------------------
|
||||
--error 1064
|
||||
--error ER_PARSE_ERROR
|
||||
|
||||
garbage ;
|
||||
let $mysql_errno= -1;
|
||||
eval select $mysql_errno as "after_let_errno_equal_value" ;
|
||||
|
@ -202,50 +213,61 @@ eval select $mysql_errno as "after_let_errno_equal_value" ;
|
|||
# How affect actions on prepared statements $mysql_errno ?
|
||||
# ----------------------------------------------------------------------------
|
||||
# failing prepare
|
||||
--error 1064
|
||||
--error ER_PARSE_ERROR
|
||||
|
||||
garbage ;
|
||||
--error 1146
|
||||
--error ER_NO_SUCH_TABLE
|
||||
|
||||
prepare stmt from "select 3 from t1" ;
|
||||
eval select $mysql_errno as "after_failing_prepare" ;
|
||||
create table t1 ( f1 char(10));
|
||||
|
||||
# successful prepare
|
||||
--error 1064
|
||||
--error ER_PARSE_ERROR
|
||||
|
||||
garbage ;
|
||||
prepare stmt from "select 3 from t1" ;
|
||||
eval select $mysql_errno as "after_successful_prepare" ;
|
||||
|
||||
# successful execute
|
||||
--error 1064
|
||||
--error ER_PARSE_ERROR
|
||||
|
||||
garbage ;
|
||||
execute stmt;
|
||||
eval select $mysql_errno as "after_successful_execute" ;
|
||||
|
||||
# failing execute (table has been dropped)
|
||||
drop table t1;
|
||||
--error 1064
|
||||
--error ER_PARSE_ERROR
|
||||
|
||||
garbage ;
|
||||
--error 1146
|
||||
--error ER_NO_SUCH_TABLE
|
||||
|
||||
execute stmt;
|
||||
eval select $mysql_errno as "after_failing_execute" ;
|
||||
|
||||
# failing execute (unknown statement)
|
||||
--error 1064
|
||||
--error ER_PARSE_ERROR
|
||||
|
||||
garbage ;
|
||||
--error 1243
|
||||
--error ER_UNKNOWN_STMT_HANDLER
|
||||
|
||||
execute __stmt_;
|
||||
eval select $mysql_errno as "after_failing_execute" ;
|
||||
|
||||
# successful deallocate
|
||||
--error 1064
|
||||
--error ER_PARSE_ERROR
|
||||
|
||||
garbage ;
|
||||
deallocate prepare stmt;
|
||||
eval select $mysql_errno as "after_successful_deallocate" ;
|
||||
|
||||
# failing deallocate ( statement handle does not exist )
|
||||
--error 1064
|
||||
--error ER_PARSE_ERROR
|
||||
|
||||
garbage ;
|
||||
--error 1243
|
||||
--error ER_UNKNOWN_STMT_HANDLER
|
||||
|
||||
deallocate prepare __stmt_;
|
||||
eval select $mysql_errno as "after_failing_deallocate" ;
|
||||
|
||||
|
@ -270,7 +292,8 @@ eval select $mysql_errno as "after_failing_deallocate" ;
|
|||
# ----------------------------------------------------------------------------
|
||||
# Switch off the abort on error and check the effect on $mysql_errno
|
||||
# ----------------------------------------------------------------------------
|
||||
--error 1064
|
||||
--error ER_PARSE_ERROR
|
||||
|
||||
garbage ;
|
||||
--disable_abort_on_error
|
||||
eval select $mysql_errno as "after_--disable_abort_on_error" ;
|
||||
|
@ -284,9 +307,11 @@ select 3 from t1 ;
|
|||
# masked failing statements
|
||||
# ----------------------------------------------------------------------------
|
||||
# expected error = response
|
||||
--error 1146
|
||||
--error ER_NO_SUCH_TABLE
|
||||
|
||||
select 3 from t1 ;
|
||||
--error 1146
|
||||
--error ER_NO_SUCH_TABLE
|
||||
|
||||
select 3 from t1 ;
|
||||
eval select $mysql_errno as "after_!errno_masked_error" ;
|
||||
# expected error <> response
|
||||
|
@ -300,7 +325,8 @@ eval select $mysql_errno as "after_!errno_masked_error" ;
|
|||
# ----------------------------------------------------------------------------
|
||||
# Switch the abort on error on and check the effect on $mysql_errno
|
||||
# ----------------------------------------------------------------------------
|
||||
--error 1064
|
||||
--error ER_PARSE_ERROR
|
||||
|
||||
garbage ;
|
||||
--enable_abort_on_error
|
||||
eval select $mysql_errno as "after_--enable_abort_on_error" ;
|
||||
|
@ -309,7 +335,8 @@ eval select $mysql_errno as "after_--enable_abort_on_error" ;
|
|||
# masked failing statements
|
||||
# ----------------------------------------------------------------------------
|
||||
# expected error = response
|
||||
--error 1146
|
||||
--error ER_NO_SUCH_TABLE
|
||||
|
||||
select 3 from t1 ;
|
||||
|
||||
# ----------------------------------------------------------------------------
|
||||
|
@ -572,9 +599,6 @@ echo ;
|
|||
# ----------------------------------------------------------------------------
|
||||
|
||||
# Illegal use of exec
|
||||
--error 1
|
||||
--exec echo "--exec false" | $MYSQL_TEST 2>&1
|
||||
|
||||
--error 1
|
||||
--exec echo "--exec " | $MYSQL_TEST 2>&1
|
||||
|
||||
|
@ -955,8 +979,6 @@ system echo "hej" > /dev/null;
|
|||
--exec echo "system;" | $MYSQL_TEST 2>&1
|
||||
--error 1
|
||||
--exec echo "system $NONEXISTSINFVAREABLI;" | $MYSQL_TEST 2>&1
|
||||
--error 1
|
||||
--exec echo "system false;" | $MYSQL_TEST 2>&1
|
||||
|
||||
--disable_abort_on_error
|
||||
system NonExistsinfComamdn 2> /dev/null;
|
||||
|
@ -1374,7 +1396,8 @@ connection default;
|
|||
let $num= 2;
|
||||
while ($num)
|
||||
{
|
||||
--error 1064
|
||||
--error ER_PARSE_ERROR
|
||||
|
||||
failing_statement;
|
||||
|
||||
dec $num;
|
||||
|
@ -1433,7 +1456,7 @@ select "this will be executed";
|
|||
#
|
||||
# Test zero length result file. Should not pass
|
||||
#
|
||||
--exec touch $MYSQLTEST_VARDIR/tmp/zero_length_file.result
|
||||
--exec echo '' > $MYSQLTEST_VARDIR/tmp/zero_length_file.result
|
||||
--exec echo "echo ok;" > $MYSQLTEST_VARDIR/tmp/query.sql
|
||||
--error 1
|
||||
--exec $MYSQL_TEST -x $MYSQLTEST_VARDIR/tmp/query.sql -R $MYSQLTEST_VARDIR/tmp/zero_length_file.result > /dev/null 2>&1
|
||||
|
@ -1486,7 +1509,8 @@ drop table t1;
|
|||
--error 1
|
||||
--exec $MYSQL_TEST --record -x $MYSQLTEST_VARDIR/tmp/bug11731.sql -R $MYSQLTEST_VARDIR/tmp/bug11731.out 2>&1
|
||||
# The .out file should be non existent
|
||||
--exec test ! -s $MYSQLTEST_VARDIR/tmp/bug11731.out
|
||||
--error 1
|
||||
--file_exists $MYSQLTEST_VARDIR/tmp/bug11731.out
|
||||
drop table t1;
|
||||
|
||||
|
||||
|
@ -1508,7 +1532,7 @@ drop table t1;
|
|||
|
||||
--exec $MYSQL_TEST --record -x $MYSQLTEST_VARDIR/tmp/bug11731.sql -R $MYSQLTEST_VARDIR/tmp/bug11731.out 2>&1
|
||||
# The .out file should exist
|
||||
--exec test -s $MYSQLTEST_VARDIR/tmp/bug11731.out
|
||||
--file_exists $MYSQLTEST_VARDIR/tmp/bug11731.out
|
||||
drop table t1;
|
||||
remove_file $MYSQLTEST_VARDIR/tmp/bug11731.out;
|
||||
remove_file $MYSQLTEST_VARDIR/log/bug11731.log;
|
||||
|
@ -1520,14 +1544,17 @@ remove_file $MYSQLTEST_VARDIR/tmp/bug11731.sql;
|
|||
|
||||
# It should be possible to use the command "query" to force mysqltest to
|
||||
# send the command to the server although it's a builtin mysqltest command.
|
||||
--error 1064
|
||||
--error ER_PARSE_ERROR
|
||||
|
||||
query sleep;
|
||||
|
||||
--error 1064
|
||||
--error ER_PARSE_ERROR
|
||||
|
||||
--query sleep
|
||||
|
||||
# Just an empty query command
|
||||
--error 1065
|
||||
--error ER_EMPTY_QUERY
|
||||
|
||||
query ;
|
||||
|
||||
# test for replace_regex
|
||||
|
@ -1921,7 +1948,8 @@ eval $my_stmt;
|
|||
# 8. Ensure that "sorted_result " does not change the semantics of
|
||||
# "--error ...." or the protocol output after such an expected failure
|
||||
--sorted_result
|
||||
--error 1146
|
||||
--error ER_NO_SUCH_TABLE
|
||||
|
||||
SELECT '2' as "my_col1",2 as "my_col2"
|
||||
UNION
|
||||
SELECT '1',1 from t2;
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
#
|
||||
|
||||
--source include/have_query_cache.inc
|
||||
--source include/not_embedded.inc
|
||||
|
||||
SET @query_cache_type= @@global.query_cache_type;
|
||||
SET @query_cache_limit= @@global.query_cache_limit;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -49,9 +49,7 @@ GRANT CREATE, TRIGGER ON mysqltest_db1.* TO mysqltest_dfn@localhost;
|
|||
CREATE TABLE t1(num_value INT);
|
||||
CREATE TABLE t2(user_str TEXT);
|
||||
|
||||
CREATE TRIGGER wl2818_trg1 BEFORE INSERT ON t1
|
||||
FOR EACH ROW
|
||||
INSERT INTO t2 VALUES(CURRENT_USER());
|
||||
CREATE TRIGGER wl2818_trg1 BEFORE INSERT ON t1 FOR EACH ROW INSERT INTO t2 VALUES(CURRENT_USER());
|
||||
|
||||
#
|
||||
# Remove definers from TRG file.
|
||||
|
@ -60,9 +58,24 @@ CREATE TRIGGER wl2818_trg1 BEFORE INSERT ON t1
|
|||
--echo
|
||||
--echo ---> patching t1.TRG...
|
||||
|
||||
let $MYSQLD_DATADIR= `select @@datadir`;
|
||||
--exec grep -v 'definers=' $MYSQLD_DATADIR/mysqltest_db1/t1.TRG > $MYSQLTEST_VARDIR/tmp/t1.TRG
|
||||
--exec mv $MYSQLTEST_VARDIR/tmp/t1.TRG $MYSQLD_DATADIR/mysqltest_db1/t1.TRG
|
||||
# Here we remove definers. This is somewhat complex than the original test
|
||||
# Previously, the test only used grep -v 'definers=' t1.TRG, but grep is not
|
||||
# portable and we have to load the file into a table, exclude the definers line,
|
||||
# then load the data to an outfile to accomplish the same effect
|
||||
|
||||
--disable_query_log
|
||||
--connection default
|
||||
CREATE TABLE patch (a blob);
|
||||
let $MYSQLD_DATADIR = `select @@datadir`;
|
||||
eval LOAD DATA LOCAL INFILE '$MYSQLD_DATADIR/mysqltest_db1/t1.TRG' INTO TABLE patch;
|
||||
# remove original t1.TRG file so SELECT INTO OUTFILE won't fail
|
||||
--remove_file $MYSQLD_DATADIR/mysqltest_db1/t1.TRG
|
||||
eval SELECT SUBSTRING_INDEX(a,'definers=',1) INTO OUTFILE
|
||||
'$MYSQLD_DATADIR/mysqltest_db1/t1.TRG'
|
||||
FROM patch;
|
||||
DROP TABLE patch;
|
||||
--connection wl2818_definer_con
|
||||
--enable_query_log
|
||||
|
||||
#
|
||||
# Create a new trigger.
|
||||
|
|
|
@ -4928,10 +4928,11 @@ int ha_partition::info(uint flag)
|
|||
This flag is used to get index number of the unique index that
|
||||
reported duplicate key
|
||||
We will report the errkey on the last handler used and ignore the rest
|
||||
Note: all engines does not support HA_STATUS_ERRKEY, so set errkey.
|
||||
*/
|
||||
file->errkey= errkey;
|
||||
file->info(HA_STATUS_ERRKEY);
|
||||
if (file->errkey != (uint) -1)
|
||||
errkey= file->errkey;
|
||||
errkey= file->errkey;
|
||||
}
|
||||
if (flag & HA_STATUS_TIME)
|
||||
{
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -354,7 +354,7 @@ static char *slave_load_file_stem(char *buf, uint file_id,
|
|||
int event_server_id, const char *ext)
|
||||
{
|
||||
char *res;
|
||||
fn_format(buf,"SQL_LOAD-",slave_load_tmpdir, "", MY_UNPACK_FILENAME);
|
||||
fn_format(buf,PREFIX_SQL_LOAD,slave_load_tmpdir, "", MY_UNPACK_FILENAME);
|
||||
to_unix_path(buf);
|
||||
|
||||
buf = strend(buf);
|
||||
|
@ -393,7 +393,7 @@ static void cleanup_load_tmpdir()
|
|||
we cannot meet Start_log event in the middle of events from one
|
||||
LOAD DATA.
|
||||
*/
|
||||
p= strmake(prefbuf, STRING_WITH_LEN("SQL_LOAD-"));
|
||||
p= strmake(prefbuf, STRING_WITH_LEN(PREFIX_SQL_LOAD));
|
||||
p= int10_to_str(::server_id, p, 10);
|
||||
*(p++)= '-';
|
||||
*p= 0;
|
||||
|
|
|
@ -47,6 +47,8 @@
|
|||
#include "rpl_reporting.h"
|
||||
#endif
|
||||
|
||||
#define PREFIX_SQL_LOAD "SQL_LOAD-"
|
||||
|
||||
/**
|
||||
Either assert or return an error.
|
||||
|
||||
|
|
|
@ -104,6 +104,11 @@ int init_relay_log_info(Relay_log_info* rli,
|
|||
rli->tables_to_lock= 0;
|
||||
rli->tables_to_lock_count= 0;
|
||||
|
||||
fn_format(rli->slave_patternload_file, PREFIX_SQL_LOAD, slave_load_tmpdir, "",
|
||||
MY_PACK_FILENAME | MY_UNPACK_FILENAME |
|
||||
MY_RETURN_REAL_PATH);
|
||||
rli->slave_patternload_file_size= strlen(rli->slave_patternload_file);
|
||||
|
||||
/*
|
||||
The relay log will now be opened, as a SEQ_READ_APPEND IO_CACHE.
|
||||
Note that the I/O thread flushes it to disk after writing every
|
||||
|
|
|
@ -260,6 +260,13 @@ public:
|
|||
char ign_master_log_name_end[FN_REFLEN];
|
||||
ulonglong ign_master_log_pos_end;
|
||||
|
||||
/*
|
||||
Indentifies where the SQL Thread should create temporary files for the
|
||||
LOAD DATA INFILE. This is used for security reasons.
|
||||
*/
|
||||
char slave_patternload_file[FN_REFLEN];
|
||||
size_t slave_patternload_file_size;
|
||||
|
||||
Relay_log_info();
|
||||
~Relay_log_info();
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1440,7 +1440,8 @@ void close_temporary_tables(THD *thd)
|
|||
if (!thd->temporary_tables)
|
||||
return;
|
||||
|
||||
if (!mysql_bin_log.is_open() || thd->current_stmt_binlog_row_based)
|
||||
if (!mysql_bin_log.is_open() ||
|
||||
(thd->current_stmt_binlog_row_based && thd->variables.binlog_format == BINLOG_FORMAT_ROW))
|
||||
{
|
||||
TABLE *tmp_next;
|
||||
for (table= thd->temporary_tables; table; table= tmp_next)
|
||||
|
|
|
@ -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");
|
||||
/*
|
||||
|
|
|
@ -15,10 +15,10 @@
|
|||
|
||||
|
||||
/* Copy data from a textfile to table */
|
||||
|
||||
#include "mysql_priv.h"
|
||||
#include <my_dir.h>
|
||||
#include <m_ctype.h>
|
||||
#include "rpl_mi.h"
|
||||
#include "sql_repl.h"
|
||||
#include "sp_head.h"
|
||||
#include "sql_trigger.h"
|
||||
|
@ -310,8 +310,31 @@ int mysql_load(THD *thd,sql_exchange *ex,TABLE_LIST *table_list,
|
|||
is_fifo = 1;
|
||||
#endif
|
||||
|
||||
if (opt_secure_file_priv &&
|
||||
strncmp(opt_secure_file_priv, name, strlen(opt_secure_file_priv)))
|
||||
if (thd->slave_thread)
|
||||
{
|
||||
#if defined(HAVE_REPLICATION) && !defined(MYSQL_CLIENT)
|
||||
if (strncmp(active_mi->rli.slave_patternload_file, name,
|
||||
active_mi->rli.slave_patternload_file_size))
|
||||
{
|
||||
/*
|
||||
LOAD DATA INFILE in the slave SQL Thread can only read from
|
||||
--slave-load-tmpdir". This should never happen. Please, report a bug.
|
||||
*/
|
||||
|
||||
sql_print_error("LOAD DATA INFILE in the slave SQL Thread can only read from --slave-load-tmpdir. " \
|
||||
"Please, report a bug.");
|
||||
my_error(ER_OPTION_PREVENTS_STATEMENT, MYF(0), "--slave-load-tmpdir");
|
||||
DBUG_RETURN(TRUE);
|
||||
}
|
||||
#else
|
||||
/*
|
||||
This is impossible and should never happen.
|
||||
*/
|
||||
DBUG_ASSERT(FALSE);
|
||||
#endif
|
||||
}
|
||||
else if (opt_secure_file_priv &&
|
||||
strncmp(opt_secure_file_priv, name, strlen(opt_secure_file_priv)))
|
||||
{
|
||||
/* Read only allowed from within dir specified by secure_file_priv */
|
||||
my_error(ER_OPTION_PREVENTS_STATEMENT, MYF(0), "--secure-file-priv");
|
||||
|
|
|
@ -2460,11 +2460,12 @@ typedef struct st_sargable_param
|
|||
*/
|
||||
|
||||
static bool
|
||||
make_join_statistics(JOIN *join, TABLE_LIST *tables, COND *conds,
|
||||
make_join_statistics(JOIN *join, TABLE_LIST *tables_arg, COND *conds,
|
||||
DYNAMIC_ARRAY *keyuse_array)
|
||||
{
|
||||
int error;
|
||||
TABLE *table;
|
||||
TABLE_LIST *tables= tables_arg;
|
||||
uint i,table_count,const_count,key;
|
||||
table_map found_const_table_map, all_table_map, found_ref, refs;
|
||||
key_map const_ref, eq_part;
|
||||
|
@ -2502,10 +2503,10 @@ make_join_statistics(JOIN *join, TABLE_LIST *tables, COND *conds,
|
|||
table_vector[i]=s->table=table=tables->table;
|
||||
table->pos_in_table_list= tables;
|
||||
error= table->file->info(HA_STATUS_VARIABLE | HA_STATUS_NO_LOCK);
|
||||
if(error)
|
||||
if (error)
|
||||
{
|
||||
table->file->print_error(error, MYF(0));
|
||||
DBUG_RETURN(1);
|
||||
table->file->print_error(error, MYF(0));
|
||||
goto error;
|
||||
}
|
||||
table->quick_keys.clear_all();
|
||||
table->reginfo.join_tab=s;
|
||||
|
@ -2601,7 +2602,7 @@ make_join_statistics(JOIN *join, TABLE_LIST *tables, COND *conds,
|
|||
{
|
||||
join->tables=0; // Don't use join->table
|
||||
my_message(ER_WRONG_OUTER_JOIN, ER(ER_WRONG_OUTER_JOIN), MYF(0));
|
||||
DBUG_RETURN(1);
|
||||
goto error;
|
||||
}
|
||||
s->key_dependent= s->dependent;
|
||||
}
|
||||
|
@ -2611,7 +2612,7 @@ make_join_statistics(JOIN *join, TABLE_LIST *tables, COND *conds,
|
|||
if (update_ref_and_keys(join->thd, keyuse_array, stat, join->tables,
|
||||
conds, join->cond_equal,
|
||||
~outer_join, join->select_lex, &sargables))
|
||||
DBUG_RETURN(1);
|
||||
goto error;
|
||||
|
||||
/* Read tables with 0 or 1 rows (system tables) */
|
||||
join->const_table_map= 0;
|
||||
|
@ -2627,7 +2628,7 @@ make_join_statistics(JOIN *join, TABLE_LIST *tables, COND *conds,
|
|||
if ((tmp=join_read_const_table(s, p_pos)))
|
||||
{
|
||||
if (tmp > 0)
|
||||
DBUG_RETURN(1); // Fatal error
|
||||
goto error; // Fatal error
|
||||
}
|
||||
else
|
||||
found_const_table_map|= s->table->map;
|
||||
|
@ -2699,7 +2700,7 @@ make_join_statistics(JOIN *join, TABLE_LIST *tables, COND *conds,
|
|||
if ((tmp= join_read_const_table(s, join->positions+const_count-1)))
|
||||
{
|
||||
if (tmp > 0)
|
||||
DBUG_RETURN(1); // Fatal error
|
||||
goto error; // Fatal error
|
||||
}
|
||||
else
|
||||
found_const_table_map|= table->map;
|
||||
|
@ -2748,12 +2749,12 @@ make_join_statistics(JOIN *join, TABLE_LIST *tables, COND *conds,
|
|||
set_position(join,const_count++,s,start_keyuse);
|
||||
if (create_ref_for_key(join, s, start_keyuse,
|
||||
found_const_table_map))
|
||||
DBUG_RETURN(1);
|
||||
goto error;
|
||||
if ((tmp=join_read_const_table(s,
|
||||
join->positions+const_count-1)))
|
||||
{
|
||||
if (tmp > 0)
|
||||
DBUG_RETURN(1); // Fatal error
|
||||
goto error; // Fatal error
|
||||
}
|
||||
else
|
||||
found_const_table_map|= table->map;
|
||||
|
@ -2830,7 +2831,7 @@ make_join_statistics(JOIN *join, TABLE_LIST *tables, COND *conds,
|
|||
*s->on_expr_ref ? *s->on_expr_ref : conds,
|
||||
1, &error);
|
||||
if (!select)
|
||||
DBUG_RETURN(1);
|
||||
goto error;
|
||||
records= get_quick_record_count(join->thd, select, s->table,
|
||||
&s->const_keys, join->row_limit);
|
||||
s->quick=select->quick;
|
||||
|
@ -2876,7 +2877,7 @@ make_join_statistics(JOIN *join, TABLE_LIST *tables, COND *conds,
|
|||
{
|
||||
optimize_keyuse(join, keyuse_array);
|
||||
if (choose_plan(join, all_table_map & ~join->const_table_map))
|
||||
DBUG_RETURN(TRUE);
|
||||
goto error;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -2886,6 +2887,17 @@ make_join_statistics(JOIN *join, TABLE_LIST *tables, COND *conds,
|
|||
}
|
||||
/* Generate an execution plan from the found optimal join order. */
|
||||
DBUG_RETURN(join->thd->killed || get_best_combination(join));
|
||||
|
||||
error:
|
||||
/*
|
||||
Need to clean up join_tab from TABLEs in case of error.
|
||||
They won't get cleaned up by JOIN::cleanup() because JOIN::join_tab
|
||||
may not be assigned yet by this function (which is building join_tab).
|
||||
Dangling TABLE::reginfo.join_tab may cause part_of_refkey to choke.
|
||||
*/
|
||||
for (tables= tables_arg; tables; tables= tables->next_leaf)
|
||||
tables->table->reginfo.join_tab= NULL;
|
||||
DBUG_RETURN (1);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1753,7 +1753,7 @@ int ha_myisam::info(uint flag)
|
|||
if (share->key_parts)
|
||||
memcpy((char*) table->key_info[0].rec_per_key,
|
||||
(char*) misam_info.rec_per_key,
|
||||
sizeof(table->key_info[0].rec_per_key)*share->key_parts);
|
||||
sizeof(table->key_info[0].rec_per_key[0])*share->key_parts);
|
||||
if (share->tmp_table == NO_TMP_TABLE)
|
||||
pthread_mutex_unlock(&share->mutex);
|
||||
|
||||
|
@ -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