summaryrefslogtreecommitdiffstats
path: root/systemtest/testdata/rewriteset1/pushdownall.ql
diff options
context:
space:
mode:
Diffstat (limited to 'systemtest/testdata/rewriteset1/pushdownall.ql')
-rw-r--r--systemtest/testdata/rewriteset1/pushdownall.ql7
1 files changed, 7 insertions, 0 deletions
diff --git a/systemtest/testdata/rewriteset1/pushdownall.ql b/systemtest/testdata/rewriteset1/pushdownall.ql
new file mode 100644
index 0000000..e868fc0
--- /dev/null
+++ b/systemtest/testdata/rewriteset1/pushdownall.ql
@@ -0,0 +1,7 @@
+-- all_cell( a and b ) -> all_cell( a ) and all_cell( b )
+
+SELECT a+b
+FROM ImgCharA as a, ImgCharB as b
+WHERE all_cell ( a > 0 and b > 10 )
+
+