~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/limit_offset.test

  • Committer: Brian Aker
  • Date: 2010-05-27 01:25:56 UTC
  • mfrom: (1567.1.4 new-staging)
  • Revision ID: brian@gaz-20100527012556-5zgkirkl7swbigd6
Merge of Brian, Paul. PBXT compile issue, and test framework cleanup. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
CREATE TABLE t1 (a int primary key auto_increment);
 
2
insert into t1 values (),(),(),(),(),(),(),(),(),();
 
3
insert into t1 values (),(),(),(),(),(),(),(),(),();
 
4
SELECT a FROM t1 ORDER BY a LIMIT 10 OFFSET 1;
 
5
SELECT a FROM t1 ORDER BY a LIMIT 10 OFFSET 10;
 
6
SELECT a FROM t1 ORDER BY a LIMIT 2 OFFSET 14;
 
7
DROP TABLE t1;