~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/drizzledump.result

  • Committer: Brian Aker
  • Date: 2010-05-13 07:52:42 UTC
  • mfrom: (1527.1.4 staging)
  • Revision ID: brian@gaz-20100513075242-gyzfi5c4nb9x4919
Merge of TableShare keynames typelib removal.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
drop database if exists mysqldump_test_db;
3
3
drop database if exists db1;
4
4
drop database if exists db2;
5
 
CREATE TABLE t1(a int, key (a)) key_block_size=1024;
6
 
Warnings:
7
 
Warning 1478    InnoDB: KEY_BLOCK_SIZE requires innodb_file_per_table.
8
 
Warning 1478    InnoDB: KEY_BLOCK_SIZE requires innodb_file_format > Antelope.
9
 
Warning 1478    InnoDB: ignoring KEY_BLOCK_SIZE=1024.
10
 
INSERT INTO t1 VALUES (1), (2);
11
 
<?xml version="1.0"?>
12
 
<drizzledump xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
13
 
<database name="test">
14
 
        <table_structure name="t1">
15
 
                <field Field="a" Type="INTEGER" Null="TRUE" Default="" Default_is_NULL="TRUE" On_Update="" />
16
 
                <key Table="t1" Unique="FALSE" Key_name="a" Seq_in_index="1" Column_name="a" />
17
 
        </table_structure>
18
 
        <table_data name="t1">
19
 
        <row>
20
 
                <field name="a">1</field>
21
 
        </row>
22
 
        <row>
23
 
                <field name="a">2</field>
24
 
        </row>
25
 
        </table_data>
26
 
</database>
27
 
</drizzledump>
28
 
DROP TABLE t1;
29
5
#
30
6
# Bug #2005
31
7
#