From: umanwizard Date: Thu, 16 Feb 2023 14:20:36 +0000 (-0500) Subject: Materialize `TAIL` -> `SUBSCRIBE` X-Git-Tag: pool-3.2.0~120 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8ca1d4ef95264b32c069eb81ee5f68f1d0c16587;p=thirdparty%2Fpsycopg.git Materialize `TAIL` -> `SUBSCRIBE` --- diff --git a/docs/api/cursors.rst b/docs/api/cursors.rst index 78c336bb0..5cb2f0f4d 100644 --- a/docs/api/cursors.rst +++ b/docs/api/cursors.rst @@ -142,13 +142,13 @@ The `!Cursor` class This command is similar to execute + iter; however it supports endless data streams. The feature is not available in PostgreSQL, but some - implementations exist: Materialize `TAIL`__ and CockroachDB + implementations exist: Materialize `SUBSCRIBE`__ and CockroachDB `CHANGEFEED`__ for instance. The feature, and the API supporting it, are still experimental. Beware... 👀 - .. __: https://materialize.com/docs/sql/tail/#main + .. __: https://materialize.com/docs/sql/subscribe/ .. __: https://www.cockroachlabs.com/docs/stable/changefeed-for.html The parameters are the same of `execute()`.