Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: rewrite pull query docs page #7532

Merged
merged 10 commits into from
May 27, 2021
Prev Previous commit
Next Next commit
Update docs/developer-guide/ksqldb-reference/select-pull-query.md
Co-authored-by: Almog Gavra <[email protected]>
cprasad1 and agavra authored May 27, 2021
commit ef845733edb023b8ea3ead49cc6b7d1ced16c5da
Original file line number Diff line number Diff line change
@@ -49,8 +49,7 @@ By default, only key lookups are enabled. They have the following requirements:
- On windowed tables, WINDOWSTART and WINDOWEND can be optionally compared to literals.
For more information on windowed tables, see [Time and Windows in ksqlDB](../../concepts/time-and-windows-in-ksqldb-queries.md).

You can enable table scans to loosen the restrictions on the `WHERE` clause or eliminate
the `WHERE` clause altogether. Table scans can be turned on for pull queries running in the
You can loosen the restrictions on the `WHERE` clause, or eliminate the `WHERE` clause altogether, by enabling table scans
current CLI session with the command `SET 'ksql.query.pull.table.scan.enabled'='true';`.
They can also be enabled by default by setting a server configuration property with
`ksql.query.pull.table.scan.enabled=true`. Once table scans are enabled, the following