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