diff --git a/test/sql/dql/type/math.slt b/test/sql/dql/type/math.slt index 25bedae3f9..00df2a0b7c 100644 --- a/test/sql/dql/type/math.slt +++ b/test/sql/dql/type/math.slt @@ -107,5 +107,13 @@ select c2 from test_math where isfinite(1.0); 2.500000 -2.500000 +query XII +SELECT c2, trunc(c2, 2) FROM test_math WHERE c1 > 9; +---- +2.400000 2.00 +-2.400000 -2.00 +2.500000 3.00 +-2.500000 -3.00 + statement ok DROP TABLE test_math; \ No newline at end of file diff --git a/test/sql/dql/type/varchar.slt b/test/sql/dql/type/varchar.slt index f403b783c6..7dd1e9906d 100644 --- a/test/sql/dql/type/varchar.slt +++ b/test/sql/dql/type/varchar.slt @@ -143,5 +143,10 @@ abcddddc abcddddd 2 1 abcdddde abcddddd 3 1 abcdddde abcdddde 4 1 +query XXI +SELECT *, reverse(c1) FROM test_varchar_filter where c1 < c2; +---- +abcddddc abcddddd 2 cddddcba + statement ok DROP TABLE test_varchar_filter;