Assuming an index that has more than one document in it, issuing a query that SELECTs a constant from it will return just one document, whereas it should return [number_of_documents_in_index] records.
Example query: SELECT 1=1 FROM "test_emp".
Result:
Desired result:
---------------
true
true
true
....