Hi Mason,
We are testing GridSQL with Postgresplus. When I issue the below query I am getting incorrect result..
GridSQL -> select calledpartynumber from test_cdr
GridSQL -> where substr(calledpartynumber,1,2) not in ('11','12');
+-------------------+
| calledpartynumber |
+-------------------+
| 1194775588345 |
| 12456 |
+-------------------+
2 row(s).
Whereas, the below query also gives the same result..
GridSQL -> select calledpartynumber from test_cdr
GridSQL -> where substr(calledpartynumber,1,2) in ('11','12');
+-------------------+
| calledpartynumber |
+-------------------+
| 1194775588345 |
| 12456 |
+-------------------+
2 row(s).
And another is when giving limit and offset in a single query is resulting no rows even there are rows in table.
Thanks,
Venkat
This message was edited 1 time. Last update was at 11 Aug 2008 07:30:42
|