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: fix stream #1578

Merged
merged 1 commit into from
Jan 24, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ A stream in Databend is a dynamic and real-time representation of changes to a t

### How Stream Works

A stream can operate in two modes: **Standard** and **Append-Only**. Specify a mode using the `APPEND_ONLY` parameter (defaults to `false`) when you [CREATE STREAM](/sql/sql-commands/ddl/stream/create-stream).
A stream can operate in two modes: **Standard** and **Append-Only**. Specify a mode using the `APPEND_ONLY` parameter (defaults to `true`) when you [CREATE STREAM](/sql/sql-commands/ddl/stream/create-stream).

- **Standard**: Captures all types of data changes, including insertions, updates, and deletions.
- **Append-Only**: In this mode, the stream exclusively contains data insertion records; data updates or deletions are not captured.
Expand Down
Loading