~ubuntu-branches/ubuntu/hardy/mysql-dfsg-5.0/hardy-proposed

« back to all changes in this revision

Viewing changes to mysql-test/suite/funcs_1/include/myisam_tb3.inc

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2012-02-23 11:21:11 UTC
  • mfrom: (1.1.16) (38.1.4 hardy-security)
  • Revision ID: package-import@ubuntu.com-20120223112111-rn9ruzg86juli2ec
Tags: 5.0.95-0ubuntu1
* SECURITY UPDATE: Update to 5.0.95 to fix multiple security issues
  (LP: #937869)
  - http://www.oracle.com/technetwork/topics/security/cpujan2012-366304.html
  - CVE-2012-0075
  - CVE-2012-0087
  - CVE-2012-0101
  - CVE-2012-0102
  - CVE-2012-0114
  - CVE-2012-0484
  - CVE-2012-0490
* Dropped patches unnecessary with 5.0.95:
  - debian/patches/91_SECURITY_CVE-2007-5925.dpatch
  - debian/patches/95_SECURITY_CVE-2008-3963.dpatch
  - debian/patches/96_SECURITY_CVE-2008-4098.dpatch
  - debian/patches/97_CVE-2008-4456.dpatch
  - debian/patches/97_CVE-2009-2446.dpatch
  - debian/patches/97_CVE-2009-4019.dpatch
  - debian/patches/97_CVE-2009-4030.dpatch
  - debian/patches/98_CVE-2009-4484.dpatch
  - debian/patches/99_ssl_test_certs.dpatch
  - debian/patches/100_CVE-2010-1850.dpatch
  - debian/patches/101_CVE-2010-1849.dpatch
  - debian/patches/102_CVE-2010-1848.dpatch
  - debian/patches/103_CVE-2010-1626.dpatch
  - debian/patches/98_CVE-2010-3677.dpatch
  - debian/patches/98_CVE-2010-3680.dpatch
  - debian/patches/98_CVE-2010-3681.dpatch
  - debian/patches/98_CVE-2010-3682.dpatch
  - debian/patches/98_CVE-2010-3833.dpatch
  - debian/patches/98_CVE-2010-3834.dpatch
  - debian/patches/98_CVE-2010-3835.dpatch
  - debian/patches/98_CVE-2010-3836.dpatch
  - debian/patches/98_CVE-2010-3837.dpatch
  - debian/patches/98_CVE-2010-3838.dpatch
  - debian/patches/98_CVE-2010-3840.dpatch
  - debian/patches/45_warn-CLI-passwords.dpatch
  - debian/patches/50_fix_mysqldump.dpatch
  - debian/patches/51_incorrect-order.dpatch
  - debian/patches/52_ndb-gcc-4.2.dpatch
  - debian/patches/53_integer-gcc-4.2.dpatch
  - debian/patches/54_ssl-client-support.dpatch
  - debian/patches/55_testsuite-2008.dpatch
  - debian/patches/58-disable-ndb-backup-print.dpatch
  - debian/patches/59-fix-mysql-replication-logs.dpatch
  - debian/patches/86_PATH_MAX.dpatch
  - debian/patches/90_upstreamdebiandir.dpatch
  - debian/patches/92_fix_order_by32202.dpatch
  - debian/patches/93_fix_user_setup_on_localhost.dpatch
  - debian/patches/94_fix_mysqldump_with_old_versions.dpatch
  - debian/patches/56-mysqlhotcopy-invalid-dbtable.dpatch
  - debian/patches/57-fix-mysqlslowdump-config.dpatch
* debian/mysql-client-5.0.docs, debian/mysql-server-5.0.docs: removed
  EXCEPTIONS-CLIENT file
* debian/libmysqlclient15-dev.docs, debian/libmysqlclient15off.docs:
  removed, no longer necessary.
* debian/patches/25_mysys__default.c.dpatch: updated for 5.0.95.
* debian/mysql-server-5.0.files: change ndb_mgmd and ndbd manpage
  locations. Removed mysqlmanagerc.1 and mysqlmanager-pwgen.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
drop table if exists tb3 ;
5
5
--enable_warnings
6
6
create table tb3 (
7
 
f118 char not null DEFAULT 'a', 
8
 
f119 char binary not null DEFAULT b'101', 
9
 
f120 char ascii not null DEFAULT b'101', 
10
 
f121 tinytext, 
11
 
f122 text, 
12
 
f123 mediumtext, 
13
 
f124 longtext unicode, 
14
 
f125 tinyblob, 
15
 
f126 blob, 
16
 
f127 mediumblob, 
17
 
f128 longblob, 
18
 
f129 binary not null DEFAULT b'101', 
19
 
f130 tinyint not null DEFAULT 99, 
20
 
f131 tinyint unsigned not null DEFAULT 99, 
21
 
f132 tinyint zerofill not null DEFAULT 99, 
22
 
f133 tinyint unsigned zerofill not null DEFAULT 99, 
23
 
f134 smallint not null DEFAULT 999, 
24
 
f135 smallint unsigned not null DEFAULT 999, 
25
 
f136 smallint zerofill not null DEFAULT 999,  
26
 
f137 smallint unsigned zerofill not null DEFAULT 999, 
27
 
f138 mediumint not null DEFAULT 9999, 
28
 
f139 mediumint unsigned not null DEFAULT 9999, 
29
 
f140 mediumint zerofill not null DEFAULT 9999, 
30
 
f141 mediumint unsigned zerofill not null DEFAULT 9999, 
31
 
f142 int not null DEFAULT 99999, 
32
 
f143 int unsigned not null DEFAULT 99999, 
33
 
f144 int zerofill not null DEFAULT 99999, 
34
 
f145 int unsigned zerofill not null DEFAULT 99999, 
35
 
f146 bigint not null DEFAULT 999999, 
36
 
f147 bigint unsigned not null DEFAULT 999999, 
37
 
f148 bigint zerofill not null DEFAULT 999999, 
38
 
f149 bigint unsigned zerofill not null DEFAULT 999999, 
39
 
f150 decimal not null DEFAULT 999.999, 
40
 
f151 decimal unsigned not null DEFAULT 999.17, 
41
 
f152 decimal zerofill not null DEFAULT 999.999, 
42
 
f153 decimal unsigned zerofill, 
43
 
f154 decimal (0), 
44
 
f155 decimal (64), 
45
 
f156 decimal (0) unsigned, 
46
 
f157 decimal (64) unsigned, 
47
 
f158 decimal (0) zerofill, 
48
 
f159 decimal (64) zerofill, 
49
 
f160 decimal (0) unsigned zerofill, 
50
 
f161 decimal (64) unsigned zerofill, 
51
 
f162 decimal (0,0), 
52
 
f163 decimal (63,30), 
53
 
f164 decimal (0,0) unsigned, 
54
 
f165 decimal (63,30) unsigned, 
55
 
f166 decimal (0,0) zerofill, 
56
 
f167 decimal (63,30) zerofill, 
57
 
f168 decimal (0,0) unsigned zerofill, 
58
 
f169 decimal (63,30) unsigned zerofill, 
59
 
f170 numeric, 
60
 
f171 numeric unsigned, 
61
 
f172 numeric zerofill, 
62
 
f173 numeric unsigned zerofill, 
63
 
f174 numeric (0), 
64
 
f175 numeric (64) 
 
7
f118 char not null DEFAULT 'a',
 
8
f119 char binary not null DEFAULT b'101',
 
9
f120 char ascii not null DEFAULT b'101',
 
10
f121 tinytext,
 
11
f122 text,
 
12
f123 mediumtext,
 
13
f124 longtext,
 
14
f125 tinyblob,
 
15
f126 blob,
 
16
f127 mediumblob,
 
17
f128 longblob,
 
18
f129 binary not null DEFAULT b'101',
 
19
f130 tinyint not null DEFAULT 99,
 
20
f131 tinyint unsigned not null DEFAULT 99,
 
21
f132 tinyint zerofill not null DEFAULT 99,
 
22
f133 tinyint unsigned zerofill not null DEFAULT 99,
 
23
f134 smallint not null DEFAULT 999,
 
24
f135 smallint unsigned not null DEFAULT 999,
 
25
f136 smallint zerofill not null DEFAULT 999,
 
26
f137 smallint unsigned zerofill not null DEFAULT 999,
 
27
f138 mediumint not null DEFAULT 9999,
 
28
f139 mediumint unsigned not null DEFAULT 9999,
 
29
f140 mediumint zerofill not null DEFAULT 9999,
 
30
f141 mediumint unsigned zerofill not null DEFAULT 9999,
 
31
f142 int not null DEFAULT 99999,
 
32
f143 int unsigned not null DEFAULT 99999,
 
33
f144 int zerofill not null DEFAULT 99999,
 
34
f145 int unsigned zerofill not null DEFAULT 99999,
 
35
f146 bigint not null DEFAULT 999999,
 
36
f147 bigint unsigned not null DEFAULT 999999,
 
37
f148 bigint zerofill not null DEFAULT 999999,
 
38
f149 bigint unsigned zerofill not null DEFAULT 999999,
 
39
f150 decimal not null DEFAULT 999.999,
 
40
f151 decimal unsigned not null DEFAULT 999.17,
 
41
f152 decimal zerofill not null DEFAULT 999.999,
 
42
f153 decimal unsigned zerofill,
 
43
f154 decimal (0),
 
44
f155 decimal (64),
 
45
f156 decimal (0) unsigned,
 
46
f157 decimal (64) unsigned,
 
47
f158 decimal (0) zerofill,
 
48
f159 decimal (64) zerofill,
 
49
f160 decimal (0) unsigned zerofill,
 
50
f161 decimal (64) unsigned zerofill,
 
51
f162 decimal (0,0),
 
52
f163 decimal (63,30),
 
53
f164 decimal (0,0) unsigned,
 
54
f165 decimal (63,30) unsigned,
 
55
f166 decimal (0,0) zerofill,
 
56
f167 decimal (63,30) zerofill,
 
57
f168 decimal (0,0) unsigned zerofill,
 
58
f169 decimal (63,30) unsigned zerofill,
 
59
f170 numeric,
 
60
f171 numeric unsigned,
 
61
f172 numeric zerofill,
 
62
f173 numeric unsigned zerofill,
 
63
f174 numeric (0),
 
64
f175 numeric (64)
65
65
) Engine = myisam;
66
66
 
67
 
--replace_result $MYSQL_TEST_DIR MYSQL_TEST_DIR
68
 
eval load data infile '$MYSQL_TEST_DIR/suite/funcs_1/data/myisam_tb3.txt' into table tb3 ;
 
67
--replace_result $MYSQLTEST_VARDIR <MYSQLTEST_VARDIR>
 
68
eval
 
69
load data infile '$MYSQLTEST_VARDIR/std_data_ln/funcs_1/myisam_tb3.txt'
 
70
into table tb3;