~drizzle-trunk/drizzle/development

1273.1.33 by Jay Pipes
Adds concurrency tests for transaction log and its data dictionary table. Adds ability to see size of the in-memory index of the transaction log in bytes to the transaction_log data dictionary table.
1
SET GLOBAL transaction_log_truncate_debug= true;
1039.5.42 by Jay Pipes
Splits out the previously aggregated all.test case into separate test
2
DROP TABLE IF EXISTS t1;
3
CREATE TABLE t1 (
1143.4.14 by Jay Pipes
Corrects bug in insert.inc test case include where the created table does not have a primary key. This works right now, but not for long, as we should throw an error when inserting into a table without a primary key.
4
id INT NOT NULL PRIMARY KEY
1039.5.42 by Jay Pipes
Splits out the previously aggregated all.test case into separate test
5
, padding VARCHAR(200) NOT NULL
6
);
7
INSERT INTO t1 VALUES (1, "I love testing.");
8
INSERT INTO t1 VALUES (2, "I hate testing.");
1405.4.6 by Jay Pipes
Add DROP TABLE to insert test to ensure test cases are idempotent.
9
DROP TABLE t1;
2016.3.1 by David Shrewsbury
No longer pass DROP SCHEMA/TABLE through the replication stream if it uses IF EXISTS and does not drop anything. Fix up test cases for this change.
10
25var/master-data/local/transaction.log
1143.2.10 by Jay Pipes
Phase 2 new replication work:
11
SET GLOBAL transaction_log_truncate_debug= true;
1786.3.2 by Monty Taylor
Cleaned up the initial pass at this. It's not perfect, but it does work.
12
0var/master-data/local/transaction.log