~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/transaction_log/t/temp_tables.inc

Added code necessary for building plugins dynamically.
Merged in changes from lifeless to allow autoreconf to work.
Touching plugin.ini files now triggers a rebuid - so config/autorun.sh is no
longer required to be run after touching those.
Removed the duplicate plugin names - also removed the issue that getting them
different would silently fail weirdly later.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
2
# Simple test of the behaviour of the transaction log
 
3
# when temporary tables are involved in certain events.
 
4
#
 
5
 
 
6
--disable_warnings
 
7
DROP TABLE IF EXISTS t1, t2;
 
8
--enable_warnings
 
9
 
 
10
CREATE TEMPORARY TABLE t1 (
 
11
  id INT NOT NULL
 
12
, padding VARCHAR(200) NOT NULL
 
13
);
 
14
 
 
15
INSERT INTO t1 VALUES (1, "I love testing.");
 
16
INSERT INTO t1 VALUES (2, "I hate testing.");
 
17
 
 
18
CREATE TABLE t2 LIKE t1;
 
19
 
 
20
INSERT INTO t2 SELECT * FROM t1;
 
21
 
 
22
DROP TABLE t1;
 
23
DROP TABLE t2;