~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/select.result

  • Committer: Lee Bieber
  • Date: 2010-08-21 22:42:44 UTC
  • mto: (1727.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1728.
  • Revision ID: lbieber@kalebral-2.local-20100821224244-kh3gmsvi45dlbuu1
For the feature request (https://blueprints.launchpad.net/drizzle/+spec/limit-maximum-sort-size) 
that is requesting the ability to cap various buffers, we first tried setting the join buffer to 
1 to see how that would affect the test results and expose test results that need to 
sorted (by adding --sorted_result). 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1272
1272
select t2.fld1,t22.fld1 from t2,t2 t22 where t2.fld1 >= 250501 and t2.fld1 <= 250505 and t22.fld1 >= 250501 and t22.fld1 <= 250505;
1273
1273
fld1    fld1
1274
1274
250501  250501
 
1275
250501  250502
 
1276
250501  250503
 
1277
250501  250504
 
1278
250501  250505
1275
1279
250502  250501
 
1280
250502  250502
 
1281
250502  250503
 
1282
250502  250504
 
1283
250502  250505
1276
1284
250503  250501
 
1285
250503  250502
 
1286
250503  250503
 
1287
250503  250504
 
1288
250503  250505
1277
1289
250504  250501
 
1290
250504  250502
 
1291
250504  250503
 
1292
250504  250504
 
1293
250504  250505
1278
1294
250505  250501
1279
 
250501  250502
1280
 
250502  250502
1281
 
250503  250502
1282
 
250504  250502
1283
1295
250505  250502
1284
 
250501  250503
1285
 
250502  250503
1286
 
250503  250503
1287
 
250504  250503
1288
1296
250505  250503
1289
 
250501  250504
1290
 
250502  250504
1291
 
250503  250504
1292
 
250504  250504
1293
1297
250505  250504
1294
 
250501  250505
1295
 
250502  250505
1296
 
250503  250505
1297
 
250504  250505
1298
1298
250505  250505
1299
1299
insert into t2 (fld1, companynr) values (999999,99);
1300
1300
select t2.companynr,companyname from t2 left join t4 using (companynr) where t4.companynr is null;
2014
2014
select * from (t1 as t2 left join t1 as t3 using (a)), t1;
2015
2015
a       a
2016
2016
1       1
 
2017
1       2
 
2018
1       3
2017
2019
2       1
 
2020
2       2
 
2021
2       3
2018
2022
3       1
2019
 
1       2
2020
 
2       2
2021
2023
3       2
2022
 
1       3
2023
 
2       3
2024
2024
3       3
2025
2025
select * from t1, (t1 as t2 left join t1 as t3 using (a));
2026
2026
a       a