~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/pbxt/insert_update.result

  • Committer: lbieber
  • Date: 2010-09-22 13:48:54 UTC
  • mfrom: (1784.1.3 build)
  • Revision ID: lbieber@orisndriz08-20100922134854-y7mae2taqhn73vsx
Merge Paul M. - latest changes from PBXT 1.0.11-7
Merge Paul M. - fix bug 641038 - pbxt rollback not working (tables reported as non-transactional)
Merge Andrew - fix show stoppers for new drizzledump

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
8       9       60      NULL
59
59
explain extended SELECT *, VALUES(a) FROM t1;
60
60
id      select_type     table   type    possible_keys   key     key_len ref     rows    filtered        Extra
61
 
1       SIMPLE  t1      ALL     NULL    NULL    NULL    NULL    6       100.00  
 
61
1       SIMPLE  t1      ALL     NULL    NULL    NULL    NULL    5       100.00  
62
62
Warnings:
63
63
Note    1003    select `test`.`t1`.`a` AS `a`,`test`.`t1`.`b` AS `b`,`test`.`t1`.`c` AS `c`,values(`test`.`t1`.`a`) AS `VALUES(a)` from `test`.`t1`
64
64
explain extended select * from t1 where values(a);
65
65
id      select_type     table   type    possible_keys   key     key_len ref     rows    filtered        Extra
66
 
1       SIMPLE  t1      ALL     NULL    NULL    NULL    NULL    6       100.00  Using where
 
66
1       SIMPLE  t1      ALL     NULL    NULL    NULL    NULL    5       100.00  Using where
67
67
Warnings:
68
68
Note    1003    select `test`.`t1`.`a` AS `a`,`test`.`t1`.`b` AS `b`,`test`.`t1`.`c` AS `c` from `test`.`t1` where values(`test`.`t1`.`a`)
69
69
DROP TABLE t1;
185
185
select * from t1;
186
186
a
187
187
3
 
188
1
188
189
2
189
 
1
190
190
insert into t1 select a from t1 on duplicate key update a=a+1 ;
191
191
ERROR 23000: Column 'a' in field list is ambiguous
192
192
insert ignore into t1 select a from t1 on duplicate key update a=t1.a+1 ;
295
295
SELECT * FROM t1;
296
296
id      f1
297
297
1       test1
 
298
3       test2
298
299
5       test3
299
 
3       test2
300
300
DROP TABLE t1;
301
301
CREATE TABLE `t1` (
302
302
`id` int PRIMARY KEY auto_increment,