-
Notifications
You must be signed in to change notification settings - Fork 472
docs: create table update syntax (part 1) #32413
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
base: docs-prep-source-versioning
Are you sure you want to change the base?
docs: create table update syntax (part 1) #32413
Conversation
overflow-x: scroll; | ||
|
||
padding-bottom: var(--xx-small); | ||
overflow-x: auto; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some housecleaning for tabs. Can ignore.
navTabs.append(`<li><a href="#${id}-t${idx}">${title}</a></li>`); | ||
}); | ||
}); | ||
document.addEventListener("DOMContentLoaded", function () { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
some housecleaning for tabs. Can ignore.
Basically, I just asked chatgpt to changed from jquery to regular js and allow for nested tabs.
94141b7
to
1327b64
Compare
[WITH ( | ||
TEXT COLUMNS (<fq_column_name> [, ...]) | ||
| EXCLUDE COLUMNS (<fq_column_name> [, ...]) | ||
[, ...] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Double checking that db source tables don't support WITH (RETAIN HISTORY...)
-- at least, using environmentd v0.130.11
@@ -9,45 +9,82 @@ menu: | |||
parent: 'commands' | |||
--- | |||
|
|||
`CREATE TABLE` defines a table that is persisted in durable storage and can be | |||
written to, updated and seamlessly joined with other tables, views or sources. | |||
`CREATE TABLE` defines a table that is persisted in durable storage. In |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
13f5525
to
7fe4869
Compare
b0ec36d
to
d26c6e7
Compare
Part 2 will include kafka sources ... but since the changes were starting to get large, thought I'd break it up into multiple parts (such as to add examples, update concepts/details, etc. ...) to make the reviews easier.Commit 2 will include kafka source syntax. (depending on when things get reviewed and merged, as work progresses, will either add to this PR or have separate PR)Will merge all the docs prep work into the
docs-prep-source-versioning
branch.https://preview.materialize.com/materialize/32413/sql/create-table/