summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/tokudb/t/fast_update_decr_floor.py
blob: 430d4c4f36550702139edae0bb2d7d90d778e271 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python

import sys

def main():
    print "# generated by tokudb_update_decr_floor.py"
    print "source include/have_tokudb.inc;"
    print "source include/have_innodb.inc;"
    print "set default_storage_engine='tokudb';"
    print "disable_warnings;"
    print "drop table if exists t;"
    print "enable_warnings;"

    print "set tokudb_disable_slow_update=1;"

    for t in [ 'tinyint', 'smallint', 'mediumint', 'int', 'bigint' ]:
        for u in [ '', 'unsigned' ]:
            for n in [ 'null', 'not null' ]:
                test_int(t, u, n)
    return 0

def test_int(t, u, n):
    print "create table tt ("
    print "    id %s %s %s primary key," % (t, u, n)
    print "    x %s %s %s" % (t, u, n)
    print ");"

    print "insert into tt values (1,4);"
    print "create table ti like tt;"
    print "alter table ti engine=innodb;"
    print "insert into ti select * from tt;"

    if u == 'unsigned':
        print "update noar tt set x=if(x=0,0,x-1) where id=1;"
        print "update noar ti set x=if(x=0,0,x-1) where id=1;"

        print "update noar tt set x=if(x=0,0,x-1) where id=1;"
        print "update noar ti set x=if(x=0,0,x-1) where id=1;"

        print "update noar tt set x=if(x=0,0,x-1) where id=1;"
        print "update noar ti set x=if(x=0,0,x-1) where id=1;"

        print "update noar tt set x=if(x=0,0,x-1) where id=1;"
        print "update noar ti set x=if(x=0,0,x-1) where id=1;"

        print "# try to decrement when x=0"
        print "update noar tt set x=if(x=0,0,x-1) where id=1;"
        print "update noar ti set x=if(x=0,0,x-1) where id=1;"
        print "let $diff_tables = test.tt, test.ti;"
        print "source include/diff_tables.inc;"
    else:
        print "replace_regex /MariaDB/XYZ/ /MySQL/XYZ/;"
        print "error ER_UNSUPPORTED_EXTENSION;"
        print "update noar tt set x=if(x=0,0,x-1) where id=1;"

    print "drop table tt, ti;"

sys.exit(main())