patch 4.0
This commit is contained in:
@ -1,3 +1,4 @@
|
||||
#注意:如果想要测时间格式的字符串,请在datetime这个标志行后面添加,因为两层设的min,max不同。
|
||||
select c1 from t3 where c1 like '|||%';
|
||||
select c1 from t3 where c1 like '11';
|
||||
#range cond
|
||||
@ -9,7 +10,7 @@ select c1 from t3 where c1 < '11';
|
||||
select c1 from t3 where c1 < '|||||||||||||||||||2';
|
||||
select c1 from t3 where c1 > '|||||||||||||||||||2';
|
||||
select c1 from t3 where c1 > '||||||||||||||||||||';
|
||||
|
||||
#用来对比下面测试datetime的结果
|
||||
select c1 from t3 where c1 > '20150305123445555';
|
||||
select c1 from t3 where c1 > '20150305123445555';
|
||||
#like
|
||||
@ -31,7 +32,7 @@ select c1 from t3 where c1 < '99991231235959999';
|
||||
select c1 from t3 where c1 > '99991231235959999';
|
||||
select c1 from t3 where c1 < '10000101000000111';
|
||||
select c1 from t3 where c1 > '10000101000000111';
|
||||
|
||||
#range的计算现在是有问题的。#bug 8551829 :14,15;修复再来修正。
|
||||
select c1 from t3 where c1 > '10000101000000111' and c1 < '99991231235959999';
|
||||
select c1 from t3 where c1 > '20150305123445555' and c1 < '10000101000000111';
|
||||
select c1 from t3 where c1 < '20150305123445555' and c1 > '99991231235959999';
|
||||
|
Reference in New Issue
Block a user