citus/src
Eren c92c81b550 Add LIMIT/OFFSET Support
Fixes #394

This change adds LIMIT/OFFSET support for non router-plannable
distributed queries.

In cases that we can push the LIMIT down, we add the OFFSET value to
that LIMIT in the worker queries. When a query with LIMIT x OFFSET y is issued,
the query is propagated to the workers as LIMIT (x+y) OFFSET 0, and on the
master table, the original LIMIT and OFFSET values are used. With this change,
we can use OFFSET wherever we can use LIMIT.
2016-07-18 12:00:24 +03:00
..
backend Add LIMIT/OFFSET Support 2016-07-18 12:00:24 +03:00
bin Provide our own psqlscan.l->psqlscan.l rule. 2016-06-22 11:03:23 -07:00
include Simplify code and fix include guards in citus_clauses 2016-07-13 11:45:51 -07:00
test/regress Add LIMIT/OFFSET Support 2016-07-18 12:00:24 +03:00