~danielpvolpato/mysql-server/parallel-mysqldump

« back to all changes in this revision

Viewing changes to mysql-test/suite/funcs_1/triggers/triggers_08.inc

Merge from main 5.1 to 5.1-build

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
#======================================================================
6
6
# WL#4084: enable disabled parts, 2007-11-15 hhunger
7
7
 
 
8
USE test;
 
9
--source suite/funcs_1/include/tb3.inc
 
10
 
8
11
# General setup for Trigger tests
9
12
let $message= Testcase: 3.5:;
10
13
--source include/show_msg.inc
57
60
        grant SELECT, INSERT, UPDATE, DELETE on db_test.* to test_general;
58
61
        grant LOCK TABLES on db_test.* to test_general;
59
62
        Use db_test;
 
63
        --replace_result $engine_type <engine_to_be_used>
60
64
        eval create table t1_i (
61
65
                i120 char ascii not null DEFAULT b'101',
62
66
                i136 smallint zerofill not null DEFAULT 999,
63
67
                i144 int zerofill not null DEFAULT 99999,
64
68
                i163 decimal (63,30)) engine=$engine_type;
 
69
        --replace_result $engine_type <engine_to_be_used>
65
70
        eval create table t1_u (
66
71
                u120 char ascii not null DEFAULT b'101',
67
72
                u136 smallint zerofill not null DEFAULT 999,
68
73
                u144 int zerofill not null DEFAULT 99999,
69
74
                u163 decimal (63,30)) engine=$engine_type;
 
75
        --replace_result $engine_type <engine_to_be_used>
70
76
        eval create table t1_d (
71
77
                d120 char ascii not null DEFAULT b'101',
72
78
                d136 smallint zerofill not null DEFAULT 999,
550
556
        drop user test_general;
551
557
        drop user test_super@localhost;
552
558
 
553
 
 
 
559
DROP TABLE test.tb3;