[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@18.226.248.119: ~ $
# Include file to test PARTITION EXCHANGE usable with different engines
# Written by Mattias.Jonsson@Sun.Com

--echo # Test with AUTO_INCREMENT
eval CREATE TABLE tp
(a INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
 b varchar(24))
ENGINE = $engine
PARTITION BY HASH (a) PARTITIONS 4;
CREATE TABLE t LIKE tp;
ALTER TABLE t REMOVE PARTITIONING;
SHOW CREATE TABLE tp;
SHOW CREATE TABLE t;
INSERT INTO tp (b) VALUES ("One"), ("Two"), ("Three"), ("Four"), ("Five"),
("Six"), ("Seven"), ("Eight"), ("Nine"), ("Ten"), ("Eleven"), ("Twelwe");
if ($no_update)
{
# Archive handles auto inc by only allowing increasing values,
# so this must be inserted before a higher value is inserted.
INSERT INTO tp VALUES (41, "One hundred one");
}
INSERT INTO tp VALUES (97, "Ninety seven");
if (!$no_delete)
{
INSERT INTO tp VALUES (111, "One hundred eleven");
}
if (!$no_update)
{
INSERT INTO tp VALUES (101, "One hundred one");
}
SET INSERT_ID = 13;
INSERT INTO t (b) VALUES ("Thirteen");
if ($no_update)
{
SET INSERT_ID = 17;
INSERT INTO t (b) VALUES ("Twenty five");
}
SET INSERT_ID = 21;
INSERT INTO t (b) VALUES ("Twenty one");
if (!$no_update)
{
SET INSERT_ID = 25;
INSERT INTO t (b) VALUES ("Twenty five");
}
if (!$no_delete)
{
SET INSERT_ID = 55;
INSERT INTO t (b) VALUES ("Fifty five");
DELETE FROM tp WHERE a = 111;
DELETE FROM t WHERE a = 55;
}
if (!$no_update)
{
UPDATE tp SET a = 41 WHERE a = 101;
UPDATE t SET a = 17 WHERE a = 25;
}
-- disable_query_log
-- disable_result_log
ANALYZE TABLE tp;
-- enable_result_log
-- enable_query_log
SELECT PARTITION_NAME, IF(TABLE_ROWS, 'YES', 'NO') AS HAVE_ROWS FROM INFORMATION_SCHEMA.PARTITIONS WHERE TABLE_SCHEMA ='test' AND TABLE_NAME = 'tp';
SELECT IF(TABLE_ROWS, 'YES', 'NO') AS HAVE_ROWS FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA ='test' AND TABLE_NAME = 't';
ALTER TABLE tp EXCHANGE PARTITION p1 WITH TABLE t;
-- disable_query_log
-- disable_result_log
ANALYZE TABLE tp;
-- enable_result_log
-- enable_query_log
SELECT PARTITION_NAME, IF(TABLE_ROWS, 'YES', 'NO') AS HAVE_ROWS FROM INFORMATION_SCHEMA.PARTITIONS WHERE TABLE_SCHEMA ='test' AND TABLE_NAME = 'tp';
SELECT IF(TABLE_ROWS, 'YES', 'NO') AS HAVE_ROWS FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA ='test' AND TABLE_NAME = 't';
SELECT * FROM tp ORDER BY a;
SELECT * FROM t ORDER BY a;
SHOW CREATE TABLE tp;
SHOW CREATE TABLE t;
DROP TABLE tp, t;

# set a DEBUG_SYNC after open table and before verifying is done
# Test that one can read from the table but not write, test that one can both
# read and write to the partition
# Verify that one must close the other instances of the table before the rename
# takes place (i.e. no need for LOCK_open)
# Test that it is not possible to drop, create, truncate either the tables or
# partition
# Test that it waits for ongoing transactions

if ($no_keys)
{
eval CREATE TABLE t
(a INT,
 b VARCHAR(55))
ENGINE =  $engine;
eval CREATE TABLE tp
(a INT,
 b VARCHAR(55))
ENGINE =  $engine
PARTITION BY RANGE (a)
(PARTITION p0 VALUES LESS THAN (100),
 PARTITION p1 VALUES LESS THAN MAXVALUE);
eval CREATE TABLE tsp
(a INT,
 b VARCHAR(55))
ENGINE =  $engine
PARTITION BY RANGE (a)
SUBPARTITION BY HASH(a)
(PARTITION p0 VALUES LESS THAN (100)
 (SUBPARTITION sp0,
  SUBPARTITION sp1),
 PARTITION p1 VALUES LESS THAN MAXVALUE
 (SUBPARTITION sp2,
  SUBPARTITION sp3));
}
if (!$no_keys)
{
eval CREATE TABLE t
(a INT,
 b VARCHAR(55),
 PRIMARY KEY (a))
ENGINE =  $engine;
eval CREATE TABLE tp
(a INT,
 b VARCHAR(55),
 PRIMARY KEY (a))
ENGINE =  $engine
PARTITION BY RANGE (a)
(PARTITION p0 VALUES LESS THAN (100),
 PARTITION p1 VALUES LESS THAN MAXVALUE);
eval CREATE TABLE tsp
(a INT,
 b VARCHAR(55),
 PRIMARY KEY (a))
ENGINE =  $engine
PARTITION BY RANGE (a)
SUBPARTITION BY HASH(a)
(PARTITION p0 VALUES LESS THAN (100)
 (SUBPARTITION sp0,
  SUBPARTITION sp1),
 PARTITION p1 VALUES LESS THAN MAXVALUE
 (SUBPARTITION sp2,
  SUBPARTITION sp3));
}

INSERT INTO t VALUES (1, "First value"), (3, "Three"), (5, "Five"), (99, "End of values");
INSERT INTO tp VALUES (2, "First value"), (10, "Ten"), (50, "Fifty"), (200, "Two hundred, end of values"), (61, "Sixty one"), (62, "Sixty two"), (63, "Sixty three"), (64, "Sixty four"), (161, "161"), (162, "162"), (163, "163"), (164, "164");
INSERT INTO tsp VALUES (2, "First value"), (10, "Ten"), (50, "Fifty"), (200, "Two hundred, end of values"), (61, "Sixty one"), (62, "Sixty two"), (63, "Sixty three"), (64, "Sixty four"), (161, "161"), (162, "162"), (163, "163"), (164, "164");
--sorted_result
SELECT * FROM t;
--sorted_result
SELECT * FROM tp;

--echo # Start by testing read/write locking
SET AUTOCOMMIT = 1;

connect(con1, localhost, root,,);
--echo # con1
SET DEBUG_SYNC= 'swap_partition_after_compare_tables SIGNAL swap_in_progress WAIT_FOR goto_verification';
SET DEBUG_SYNC= 'swap_partition_first_row_read SIGNAL swap_in_progress WAIT_FOR goto_wait';
SET DEBUG_SYNC= 'swap_partition_after_wait SIGNAL swap_in_progress WAIT_FOR goto_rename';
SET DEBUG_SYNC= 'swap_partition_before_rename SIGNAL swap_in_progress WAIT_FOR test_done';
send ALTER TABLE tp EXCHANGE PARTITION p0 WITH TABLE t;

connection default;
--echo # con default
SET DEBUG_SYNC= 'now WAIT_FOR swap_in_progress';
--echo # select from t and select/update/delete/insert from tp should work
SELECT * FROM t WHERE a = 99;
SELECT * FROM tp WHERE a = 61;
--echo # any write (update/delete/insert) into t or tp should fail
SET SESSION lock_wait_timeout=1;
if (!$no_update)
{
--error ER_LOCK_WAIT_TIMEOUT
UPDATE tp SET a = 53, b = concat("Fifty three, was ", b) WHERE a = 63;
}
--error ER_LOCK_WAIT_TIMEOUT
INSERT INTO tp VALUES (63, "Sixty three, new"), (59, "To be deleted");
if (!$no_delete)
{
--error ER_LOCK_WAIT_TIMEOUT
DELETE FROM tp WHERE a = 59;
}
if (!$no_update)
{
--error ER_LOCK_WAIT_TIMEOUT
UPDATE t SET a = 53, b = "Fifty three, was three" WHERE a = 3;
}
--error ER_LOCK_WAIT_TIMEOUT
INSERT INTO t VALUES (63, "Sixty three, new"), (59, "To be deleted");
if (!$no_delete)
{
--error ER_LOCK_WAIT_TIMEOUT
DELETE FROM t WHERE a = 3;
}
--error ER_LOCK_WAIT_TIMEOUT
eval ALTER TABLE t ENGINE = $engine;
--error ER_LOCK_WAIT_TIMEOUT
eval ALTER TABLE tp ENGINE = $engine;
SHOW CREATE TABLE t;
SHOW CREATE TABLE tp;
SET DEBUG_SYNC= 'now SIGNAL goto_verification';
SET DEBUG_SYNC= 'now WAIT_FOR swap_in_progress';
--echo # select from t and select/update/delete/insert from tp should work
SELECT * FROM t WHERE a = 99;
SELECT * FROM tp WHERE a = 61;
if (!$no_update)
{
--error ER_LOCK_WAIT_TIMEOUT
UPDATE tp SET a = 43, b = concat("Fifty three, was ", b) WHERE a = 63;
}
--error ER_LOCK_WAIT_TIMEOUT
INSERT INTO tp VALUES (63, "Sixty three, new 2"), (59, "To be deleted");
if (!$no_delete)
{
--error ER_LOCK_WAIT_TIMEOUT
DELETE FROM tp WHERE a = 59;
}
--echo # any write (update/delete/insert) into t should fail
if (!$no_update)
{
--error ER_LOCK_WAIT_TIMEOUT
UPDATE t SET a = 53, b = "Fifty three, was three" WHERE a = 3;
}
--error ER_LOCK_WAIT_TIMEOUT
INSERT INTO t VALUES (63, "Sixty three, new"), (59, "To be deleted");
if (!$no_delete)
{
--error ER_LOCK_WAIT_TIMEOUT
DELETE FROM t WHERE a = 3;
}
--error ER_LOCK_WAIT_TIMEOUT
eval ALTER TABLE t ENGINE = $engine;
--error ER_LOCK_WAIT_TIMEOUT
eval ALTER TABLE tp ENGINE = $engine;
SHOW CREATE TABLE t;
SHOW CREATE TABLE tp;
SET DEBUG_SYNC= 'now SIGNAL goto_wait';
SET DEBUG_SYNC= 'now WAIT_FOR swap_in_progress';
--echo # Both tables should now be under exclusive lock, even SHOW should fail
--error ER_LOCK_WAIT_TIMEOUT
SELECT * FROM t WHERE a = 99;
--error ER_LOCK_WAIT_TIMEOUT
SELECT * FROM tp WHERE a = 61;
if (!$no_update)
{
--error ER_LOCK_WAIT_TIMEOUT
UPDATE tp SET a = 53, b = concat("Fifty three, was ", b) WHERE a = 63;
}
--error ER_LOCK_WAIT_TIMEOUT
INSERT INTO tp VALUES (63, "Sixty three, new 2"), (59, "To be deleted");
if (!$no_delete)
{
--error ER_LOCK_WAIT_TIMEOUT
DELETE FROM tp WHERE a = 59;
}
if (!$no_update)
{
--error ER_LOCK_WAIT_TIMEOUT
UPDATE t SET a = 53, b = "Fifty three, was three" WHERE a = 3;
}
--error ER_LOCK_WAIT_TIMEOUT
INSERT INTO t VALUES (63, "Sixty three, new"), (59, "To be deleted");
if (!$no_delete)
{
--error ER_LOCK_WAIT_TIMEOUT
DELETE FROM t WHERE a = 3;
}
--error ER_LOCK_WAIT_TIMEOUT
SHOW CREATE TABLE t;
--error ER_LOCK_WAIT_TIMEOUT
SHOW CREATE TABLE tp;
--error ER_LOCK_WAIT_TIMEOUT
eval ALTER TABLE t ENGINE = $engine;
--error ER_LOCK_WAIT_TIMEOUT
eval ALTER TABLE tp ENGINE = $engine;
SET DEBUG_SYNC= 'now SIGNAL goto_rename';
SET DEBUG_SYNC= 'now WAIT_FOR swap_in_progress';
--echo # Both tables should now be under exclusive lock
--error ER_LOCK_WAIT_TIMEOUT
SELECT * FROM t WHERE a = 99;
--error ER_LOCK_WAIT_TIMEOUT
SELECT * FROM tp WHERE a = 61;
if (!$no_update)
{
--error ER_LOCK_WAIT_TIMEOUT
UPDATE tp SET a = 53, b = concat("Fifty three, was ", b) WHERE a = 63;
}
--error ER_LOCK_WAIT_TIMEOUT
INSERT INTO tp VALUES (63, "Sixty three, new 2"), (59, "To be deleted");
if (!$no_delete)
{
--error ER_LOCK_WAIT_TIMEOUT
DELETE FROM tp WHERE a = 59;
}
if (!$no_update)
{
--error ER_LOCK_WAIT_TIMEOUT
UPDATE t SET a = 53, b = "Fifty three, was three" WHERE a = 3;
}
--error ER_LOCK_WAIT_TIMEOUT
INSERT INTO t VALUES (63, "Sixty three, new"), (59, "To be deleted");
if (!$no_delete)
{
--error ER_LOCK_WAIT_TIMEOUT
DELETE FROM t WHERE a = 3;
}
--error ER_LOCK_WAIT_TIMEOUT
eval ALTER TABLE t ENGINE = $engine;
--error ER_LOCK_WAIT_TIMEOUT
eval ALTER TABLE tp ENGINE = $engine;
--error ER_LOCK_WAIT_TIMEOUT
SHOW CREATE TABLE t;
--error ER_LOCK_WAIT_TIMEOUT
SHOW CREATE TABLE tp;

SET DEBUG_SYNC= 'now SIGNAL test_done';

connection con1;
--echo # con1
--reap
connection default;
--echo # con default
--echo # Tables should now be as normal
SHOW CREATE TABLE t;
SHOW CREATE TABLE tp;
SELECT * FROM tp WHERE a = 99;
SELECT * FROM t WHERE a = 61;
if (!$no_update)
{
UPDATE t SET a = 53, b = "Fifty three, was sixty three" WHERE a = 63;
}
INSERT INTO t VALUES (63, "Sixty three, new"), (59, "To be deleted");
if (!$no_delete)
{
DELETE FROM t WHERE a = 59;
}
if (!$no_update)
{
UPDATE tp SET a = 53, b = "Fifty three, was three" WHERE a = 3;
}
INSERT INTO tp VALUES (63, "Sixty three, new"), (59, "To be deleted");
if (!$no_delete)
{
DELETE FROM tp WHERE a = 3;
}
eval ALTER TABLE t ENGINE = $engine;
eval ALTER TABLE tp ENGINE = $engine;

disconnect con1;
connection default;
--echo # con default
SET DEBUG_SYNC= 'RESET';
SHOW CREATE TABLE t;
SHOW CREATE TABLE tp;
--sorted_result
SELECT * FROM t;
--sorted_result
SELECT * FROM tp;

DROP TABLE t, tp, tsp;



Filemanager

Name Type Size Permission Actions
methods1.inc File 6.92 KB 0644
part_blocked_sql_funcs_main.inc File 8.81 KB 0644
part_exch_drop_tabs.inc File 377 B 0644
part_exch_qa.inc File 4.1 KB 0644
part_exch_qa_1.inc File 1.78 KB 0644
part_exch_qa_13.inc File 7.81 KB 0644
part_exch_qa_4.inc File 1.11 KB 0644
part_exch_qa_5.inc File 2.68 KB 0644
part_exch_qa_7.inc File 1.65 KB 0644
part_exch_qa_8.inc File 2.06 KB 0644
part_exch_tabs.inc File 5.88 KB 0644
part_supported_sql_funcs_delete.inc File 2.67 KB 0644
part_supported_sql_funcs_main.inc File 8.5 KB 0644
partition-dml-1-1-modes.inc File 6.63 KB 0644
partition-dml-1-1.inc File 3.56 KB 0644
partition-dml-1-10.inc File 2.09 KB 0644
partition-dml-1-11.inc File 4.26 KB 0644
partition-dml-1-2.inc File 2.05 KB 0644
partition-dml-1-3.inc File 2.32 KB 0644
partition-dml-1-4.inc File 1.81 KB 0644
partition-dml-1-5.inc File 1.75 KB 0644
partition-dml-1-6.inc File 1.75 KB 0644
partition-dml-1-7.inc File 3.03 KB 0644
partition-dml-1-8.inc File 2.98 KB 0644
partition-dml-1-9.inc File 4.93 KB 0644
partition-dml_cr_tab.inc File 1.11 KB 0644
partition-dml_ins_tab.inc File 2.86 KB 0644
partition.pre File 19.76 KB 0644
partition_10.inc File 2.7 KB 0644
partition_11.inc File 975 B 0644
partition_12.inc File 2.51 KB 0644
partition_20.inc File 2.63 KB 0644
partition_alter1_1.inc File 3.43 KB 0644
partition_alter1_1_2.inc File 3.04 KB 0644
partition_alter1_2.inc File 5.98 KB 0644
partition_alter2_1.inc File 7.09 KB 0644
partition_alter2_2.inc File 7.06 KB 0644
partition_alter3.inc File 8.34 KB 0644
partition_alter4.inc File 6.72 KB 0644
partition_alter_1.inc File 3.97 KB 0644
partition_alter_11.inc File 6.79 KB 0644
partition_alter_13.inc File 6.83 KB 0644
partition_alter_41.inc File 7.21 KB 0644
partition_auto_increment.inc File 24.66 KB 0644
partition_basic.inc File 5.09 KB 0644
partition_basic_symlink.inc File 2.23 KB 0644
partition_bigint.inc File 1.75 KB 0644
partition_binary.inc File 3.2 KB 0644
partition_bit.inc File 3.46 KB 0644
partition_blob.inc File 1.48 KB 0644
partition_blocked_sql_funcs.inc File 5.3 KB 0644
partition_char.inc File 3.08 KB 0644
partition_check.inc File 43.68 KB 0644
partition_check_drop.inc File 3.03 KB 0644
partition_check_read.inc File 3.02 KB 0644
partition_check_read1.inc File 2.97 KB 0644
partition_check_read2.inc File 2.53 KB 0644
partition_cleanup.inc File 1.29 KB 0644
partition_crash.inc File 855 B 0644
partition_crash_add.inc File 1.48 KB 0644
partition_crash_change.inc File 1.87 KB 0644
partition_crash_drop.inc File 1.33 KB 0644
partition_crash_exchange.inc File 1.38 KB 0644
partition_crash_t2.inc File 344 B 0644
partition_date.inc File 2.13 KB 0644
partition_datetime.inc File 2.14 KB 0644
partition_decimal.inc File 2.57 KB 0644
partition_directory.inc File 6.87 KB 0644
partition_double.inc File 1.17 KB 0644
partition_engine.inc File 11.5 KB 0644
partition_enum.inc File 1.88 KB 0644
partition_exchange.inc File 10.16 KB 0644
partition_fail.inc File 987 B 0644
partition_fail_add.inc File 1.46 KB 0644
partition_fail_change.inc File 1.85 KB 0644
partition_fail_drop.inc File 1.31 KB 0644
partition_fail_exchange.inc File 1.29 KB 0644
partition_fail_t2.inc File 777 B 0644
partition_float.inc File 1.2 KB 0644
partition_int.inc File 1.46 KB 0644
partition_key_16col.inc File 1.53 KB 0644
partition_key_32col.inc File 3.63 KB 0644
partition_key_4col.inc File 613 B 0644
partition_key_8col.inc File 1.03 KB 0644
partition_layout.inc File 404 B 0644
partition_layout_check1.inc File 3.38 KB 0644
partition_layout_check2.inc File 3.14 KB 0644
partition_max_parts_hash.inc File 1.53 KB 0644
partition_max_parts_inv.inc File 3.88 KB 0644
partition_max_parts_key.inc File 1.53 KB 0644
partition_max_parts_list.inc File 2.43 KB 0644
partition_max_parts_range.inc File 2.38 KB 0644
partition_max_sub_parts_key_list.inc File 2.55 KB 0644
partition_max_sub_parts_key_range.inc File 2.48 KB 0644
partition_max_sub_parts_list.inc File 2.52 KB 0644
partition_max_sub_parts_range.inc File 2.46 KB 0644
partition_mediumint.inc File 1.44 KB 0644
partition_methods1.inc File 11.42 KB 0644
partition_methods2.inc File 11.01 KB 0644
partition_mgm.inc File 20.82 KB 0644
partition_mgm_crash.inc File 1.81 KB 0644
partition_set.inc File 1.86 KB 0644
partition_smallint.inc File 1.38 KB 0644
partition_supported_sql_funcs.inc File 9.63 KB 0644
partition_syntax.inc File 27.68 KB 0644
partition_syntax_1.inc File 3.69 KB 0644
partition_syntax_2.inc File 1.82 KB 0644
partition_text.inc File 1.33 KB 0644
partition_time.inc File 2.08 KB 0644
partition_timestamp.inc File 2.61 KB 0644
partition_tinyint.inc File 1.33 KB 0644
partition_trigg1.inc File 4.56 KB 0644
partition_trigg2.inc File 2.36 KB 0644
partition_trigg3.inc File 3.22 KB 0644
partition_value.inc File 7.25 KB 0644
partition_varbinary.inc File 3.02 KB 0644
partition_varchar.inc File 3 KB 0644
partition_year.inc File 958 B 0644
rpl-partition-dml-1-1.inc File 2.5 KB 0644