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

« back to all changes in this revision

Viewing changes to mysql-test/t/user_var.test

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2007-04-02 16:10:53 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20070402161053-zkil9hjq9k5p1uzv
Tags: 5.0.37-0ubuntu1
* New upstream bugfix release.
  - Fixes replication failure with auto-increment and on duplicate key
    update, a regression introduced into 5.0.24. (LP: #95821)
* debian/control: Set Ubuntu maintainer.
* debian/rules: Change comments from 'Debian etch' to 'Ubuntu 7.04'.

Show diffs side-by-side

added added

removed removed

Lines of Context:
210
210
insert into t1 values (1,2),(2,3),(3,1);
211
211
select @var:=f2 from t1 group by f1 order by f2 desc limit 1;
212
212
select @var;
213
 
drop table t1;
 
213
create table t2 as select @var:=f2 from t1 group by f1 order by f2 desc limit 1;
 
214
select * from t2;
 
215
select @var;
 
216
drop table t1,t2;
214
217
 
215
218
#
216
219
# Bug#19024 - SHOW COUNT(*) WARNINGS not return Errors