Sign in
apache
/
hawq
/
master
/
.
/
src
/
test
/
feature
/
vexecutor
/
sql
/
projandqual.sql
blob: 1daaa1cb5a84ce7349fe14bcd7e87b0850ce71df [
file
] [
log
] [
blame
]
select
a
+
b
from
test1
where
a
+
b
>
1020
and
b
+
c
>
1
;
select
a
-
b
from
test1
where
a
-
b
>
1020
and
b
-
c
>=
0
;
select
a
*
b
from
test1
where
a
*
b
>
1020
and
b
*
c
<
10
;
select
a
/
b
from
test1
where
a
/
b
>
1020
and
b
*
c
=
1
;