~ubuntu-branches/ubuntu/quantal/drizzle/quantal

« back to all changes in this revision

Viewing changes to tests/randgen/conf/engines/falcon/falcon_varchar.cc

  • Committer: Package Import Robot
  • Author(s): Clint Byrum
  • Date: 2012-06-19 10:46:49 UTC
  • mfrom: (1.2.11) (2.1.16 sid)
  • Revision ID: package-import@ubuntu.com-20120619104649-9ij634mxm4x8pp4l
Tags: 1:7.1.36-stable-1ubuntu1
* Merge from Debian unstable. (LP: #987575)
  Remaining changes:
  - Added upstart script.
* debian/drizzle.upstart: dropped logger since upstart logs job
  output now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2008-2010 Sun Microsystems, Inc. All rights reserved.
 
2
# Use is subject to license terms.
 
3
#
 
4
# This program is free software; you can redistribute it and/or modify
 
5
# it under the terms of the GNU General Public License as published by
 
6
# the Free Software Foundation; version 2 of the License.
 
7
#
 
8
# This program is distributed in the hope that it will be useful, but
 
9
# WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 
11
# General Public License for more details.
 
12
#
 
13
# You should have received a copy of the GNU General Public License
 
14
# along with this program; if not, write to the Free Software
 
15
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
 
16
# USA
 
17
 
 
18
$combinations = [
 
19
        ['
 
20
                --engine=Falcon
 
21
                --reporters=Deadlock,ErrorLog,Backtrace,Recovery,Shutdown
 
22
                --mysqld=--loose-falcon-lock-wait-timeout=1
 
23
                --mysqld=--loose-innodb-lock-wait-timeout=1
 
24
                --mysqld=--log-output=none
 
25
                --mysqld=--loose-skip-safemalloc
 
26
        '],
 
27
        [
 
28
                '--mysqld=--falcon-page-size=2K',
 
29
                '--mysqld=--falcon-page-size=4K',
 
30
                '--mysqld=--falcon-page-size=8K',
 
31
                '--mysqld=--falcon-page-size=16K',
 
32
                '--mysqld=--falcon-page-size=32K'
 
33
        ],
 
34
        [
 
35
                '--rows=10',
 
36
                '--rows=100',
 
37
                '--rows=1000',
 
38
                '--rows=10000'
 
39
        ],
 
40
        [
 
41
                '--threads=4',
 
42
                '--threads=8',
 
43
                '--threads=16',
 
44
                '--threads=32',
 
45
                '--threads=64'
 
46
        ],
 
47
        [
 
48
                '--mysqld=--falcon-checkpoint-schedule=\'1 1 1 1 1\'',
 
49
                '--mysqld=--falcon-checkpoint-schedule=\'1 * * * *\'',
 
50
                '--mysqld=--falcon-consistent=read=1',
 
51
                '--mysqld=--falcon-gopher-threads=1',
 
52
                '--mysqld=--falcon-index-chill-threshold=1',
 
53
                '--mysqld=--falcon-record-chill-threshold=1',
 
54
                '--mysqld=--falcon-io-threads=1',
 
55
                '--mysqld=--falcon-page-cache-size=1K',
 
56
#               '--mysqld=--falcon-record-memory-max=3M',
 
57
                '--mysqld=--falcon-scavenge-schedule=\'1 1 1 1 1\'',
 
58
                '--mysqld=--falcon-scavenge-schedule=\'1 * * * *\'',
 
59
                '--mysqld=--falcon-serial-log-buffers=1',
 
60
                '--mysqld=--falcon-use-deferred-index-hash=1',
 
61
                '--mysqld=--falcon-use-supernodes=0'
 
62
        ], [
 
63
                '--varchar-length=0',
 
64
                '--varchar-length=1',
 
65
                '--varchar-length=2',
 
66
                '--varchar-length=4',
 
67
                '--varchar-length=8',
 
68
                '--varchar-length=16',
 
69
                '--varchar-length=32',
 
70
                '--varchar-length=64',
 
71
                '--varchar-length=128',
 
72
                '--varchar-length=256',
 
73
                '--varchar-length=512',
 
74
                '--varchar-length=1024'
 
75
        ]
 
76
];