~ubuntu-branches/ubuntu/vivid/drizzle/vivid-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): Tobias Frost
  • Date: 2013-08-22 20:18:31 UTC
  • mto: (20.1.1 sid)
  • mto: This revision was merged to the branch mainline in revision 21.
  • Revision ID: package-import@ubuntu.com-20130822201831-gn3ozsh7o7wmc5tk
Tags: upstream-7.2.3
ImportĀ upstreamĀ versionĀ 7.2.3

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
 
}