~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/optimizer.result

  • Committer: Patrick Crews
  • Date: 2010-07-19 22:50:20 UTC
  • mto: (1663.1.2 rollup)
  • mto: This revision was merged to the branch mainline in revision 1664.
  • Revision ID: gleebix@gmail.com-20100719225020-6lhrjnkq3k9lyq0f
Fix of optimizer.test - needed cleanup at the end + updated .result file

Show diffs side-by-side

added added

removed removed

Lines of Context:
100
100
End Bug#595305 test
101
101
Bug#592444 
102
102
- Segfault - operator= (join=0x1fd0fd8, tables=<value optimized out>, conds=<value optimized out>, keyuse_array=<value optimized out>) at ./drizzled/join_table.h:73
 
103
DROP TABLE IF EXISTS `a`;
 
104
DROP TABLE IF EXISTS `d`;
 
105
DROP TABLE IF EXISTS `h`;
 
106
DROP TABLE IF EXISTS `k`;
 
107
DROP TABLE IF EXISTS `n`;
103
108
DROP TABLE IF EXISTS `p`;
104
109
CREATE TABLE `p` (
105
110
`pk` int NOT NULL AUTO_INCREMENT,
130
135
ALTER TABLE `n` ENABLE KEYS;
131
136
Warnings:
132
137
Note    1031    Table storage engine for 'n' doesn't have this option
133
 
DROP TABLE IF EXISTS `d`;
134
 
Warnings:
135
 
Note    1051    Unknown table 'd'
136
138
CREATE TABLE `d` (
137
139
`pk` int NOT NULL AUTO_INCREMENT,
138
140
`col_varchar_10` varchar(10) DEFAULT NULL,
145
147
ALTER TABLE `d` ENABLE KEYS;
146
148
Warnings:
147
149
Note    1031    Table storage engine for 'd' doesn't have this option
148
 
DROP TABLE IF EXISTS `h`;
149
 
Warnings:
150
 
Note    1051    Unknown table 'h'
151
150
CREATE TABLE `h` (
152
151
`col_varchar_10` varchar(10) DEFAULT NULL,
153
152
`pk` int NOT NULL AUTO_INCREMENT,
164
163
ALTER TABLE `h` ENABLE KEYS;
165
164
Warnings:
166
165
Note    1031    Table storage engine for 'h' doesn't have this option
167
 
DROP TABLE IF EXISTS `a`;
168
 
Warnings:
169
 
Note    1051    Unknown table 'a'
170
166
CREATE TABLE `a` (
171
167
`pk` int NOT NULL AUTO_INCREMENT,
172
168
PRIMARY KEY (`pk`)
173
169
) ENGINE=InnoDB;
174
 
DROP TABLE IF EXISTS `k`;
175
 
Warnings:
176
 
Note    1051    Unknown table 'k'
177
170
CREATE TABLE `k` (
178
171
`pk` int NOT NULL AUTO_INCREMENT,
179
172
`col_varchar_10` varchar(10) DEFAULT NULL,
211
204
( table3 . `pk` IN (6) )
212
205
OR table7 . `col_int_key` IN (1, 1, 1, 2) ) ;
213
206
field4
 
207
DROP TABLE a, d, h, k, n , p ;
214
208
End Bug#592444 test