The following query ```sql select * from schema limit 1 offset 1; ``` fails with `Query failed: line 1:32: mismatched input 'offset'. Expecting: <EOF>` while ```sql select * from schema offset 1 limit 1; ``` works as expected using the Trino CLI client.
The following query
fails with
Query failed: line 1:32: mismatched input 'offset'. Expecting: <EOF>while
works as expected using the Trino CLI client.