~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to tests/randgen/conf/backup/backup_simple.yy

  • Committer: Package Import Robot
  • Author(s): Dmitrijs Ledkovs
  • Date: 2013-10-29 15:43:40 UTC
  • mfrom: (1.2.12) (2.1.19 trusty-proposed)
  • Revision ID: package-import@ubuntu.com-20131029154340-2gp39el6cv8bwf2o
Tags: 1:7.2.3-2ubuntu1
* Merge from debian, remaining changes:
  - Link against boost_system because of boost_thread.
  - Add required libs to message/include.am
  - Add upstart job and adjust init script to be upstart compatible.
  - Disable -floop-parallelize-all due to gcc-4.8/4.9 compiler ICE
    http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57732

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2008 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
 
query:
19
 
        update | insert | delete ;
20
 
 
21
 
#
22
 
# We take one inital backup before we have started messing up with the tables.
23
 
# We will then restore from this known-good backup periodically in order to prevent a situation where
24
 
# the tables are obliterated from a failed RESTORE and the test just continues to run with no tables
25
 
#
26
 
thread1_init:
27
 
        BACKUP DATABASE test TO ' master_backup ' ;
28
 
 
29
 
thread1:
30
 
        backup_restore | backup_restore | backup_restore | backup_restore |
31
 
        restore_master;
32
 
 
33
 
backup_restore:
34
 
        SELECT SLEEP(1) ; BACKUP DATABASE test TO _tmpnam ; SELECT SLEEP(1) ; RESTORE FROM _tmpnam OVERWRITE ;
35
 
 
36
 
restore_master:
37
 
        SELECT SLEEP(1) ; RESTORE FROM ' master_backup ' OVERWRITE ;
38
 
 
39
 
update:
40
 
        UPDATE _table SET _field = digit WHERE condition LIMIT _digit ;
41
 
 
42
 
delete:
43
 
        DELETE FROM _table WHERE condition LIMIT 1 ;
44
 
 
45
 
insert:
46
 
        INSERT INTO _table ( _field ) VALUES ( _digit ) |
47
 
        INSERT INTO _table ( _field ) SELECT _field FROM _table LIMIT _digit ;
48
 
 
49
 
condition:
50
 
        _field < digit | _field = _digit ;