~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/show_check.test

  • Committer: Brian Aker
  • Date: 2009-07-31 23:20:14 UTC
  • mto: This revision was merged to the branch mainline in revision 1108.
  • Revision ID: brian@gaz-20090731232014-amd6192q1n8wade0
Heap is now tmp only table

Show diffs side-by-side

added added

removed removed

Lines of Context:
204
204
 
205
205
select @@max_heap_table_size;
206
206
 
207
 
CREATE TABLE t1 (
 
207
CREATE TEMPORARY TABLE t1 (
208
208
 a int default NULL,
209
209
 KEY a USING BTREE (a)
210
210
) ENGINE=HEAP;
211
211
 
212
 
CREATE TABLE t2 (
 
212
CREATE TEMPORARY TABLE t2 (
213
213
 b int default NULL,
214
214
 index(b)
215
215
) ENGINE=HEAP;
216
216
 
217
 
CREATE TABLE t3 (
 
217
CREATE TEMPORARY TABLE t3 (
218
218
 a int default NULL,
219
219
 b int default NULL,
220
220
 KEY a USING BTREE (a),
261
261
 
262
262
# Test that USING <keytype> is always shown in SHOW CREATE TABLE when it was
263
263
# specified during table creation, but not otherwise. (Bug #7235)
264
 
CREATE TABLE t1 (i int, KEY (i)) ENGINE=MEMORY;
265
 
SHOW CREATE TABLE t1;
266
 
DROP TABLE t1;
267
 
CREATE TABLE t1 (i int, KEY USING HASH (i)) ENGINE=MEMORY;
268
 
SHOW CREATE TABLE t1;
269
 
DROP TABLE t1;
270
 
CREATE TABLE t1 (i int, KEY USING BTREE (i)) ENGINE=MEMORY;
 
264
CREATE TEMPORARY TABLE t1 (i int, KEY (i)) ENGINE=MEMORY;
 
265
SHOW CREATE TABLE t1;
 
266
DROP TABLE t1;
 
267
CREATE TEMPORARY TABLE t1 (i int, KEY USING HASH (i)) ENGINE=MEMORY;
 
268
SHOW CREATE TABLE t1;
 
269
DROP TABLE t1;
 
270
CREATE TEMPORARY TABLE t1 (i int, KEY USING BTREE (i)) ENGINE=MEMORY;
271
271
SHOW CREATE TABLE t1;
272
272
DROP TABLE t1;
273
273
CREATE TEMPORARY TABLE t1 (i int, KEY (i)) ENGINE=MyISAM;