~ubuntu-branches/ubuntu/saucy/drizzle/saucy-proposed

« back to all changes in this revision

Viewing changes to tests/kewpie/randgen/conf/replication/rpl_transactions_nopk.zz

  • Committer: Package Import Robot
  • Author(s): Clint Byrum
  • Date: 2012-06-19 10:46:49 UTC
  • mfrom: (1.1.6)
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20120619104649-e2l0ggd4oz3um0f4
Tags: upstream-7.1.36-stable
ImportĀ upstreamĀ versionĀ 7.1.36-stable

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# This program is free software; you can redistribute it and/or modify
 
2
# it under the terms of the GNU General Public License as published by
 
3
# the Free Software Foundation; version 2 of the License.
 
4
#
 
5
# This program is distributed in the hope that it will be useful, but
 
6
# WITHOUT ANY WARRANTY; without even the implied warranty of
 
7
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 
8
# General Public License for more details.
 
9
#
 
10
# You should have received a copy of the GNU General Public License
 
11
# along with this program; if not, write to the Free Software
 
12
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
 
13
# USA
 
14
 
 
15
$schemas = [ 'test' , 'test1' ];
 
16
 
 
17
$tables = {
 
18
        rows => [ 10 , 100, 1000 ],
 
19
        engines => [ 'InnoDB' ],
 
20
        indexes => [ undef, 'KEY' ],
 
21
        pk => [ undef ]
 
22
};
 
23
 
 
24
$fields = {
 
25
        types => [ 'bit(64)' , 'bigint' , 'set' , 'varchar(255)' , 'text' ],
 
26
        charsets => [ 'utf8' , 'binary'  ]
 
27
};
 
28
 
 
29
$data = {
 
30
        numbers   => [ 'digit' , 'null' , undef ],
 
31
        strings   => [ 'letter' , 'english' , 'null' ],
 
32
        blobs     => [ 'english', 'english', 'english', 'english', 'english', 'english', 'english', 'english', 'english', 'varchar(512)' ]
 
33
}