-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: support TIMESTAMP being a key column (#5542)
* feat: support TIMESTAMP being a key column fixes: #5538 The `TIMESTAMP` property that can be specified in the `WITH` clause can now reference key columns. Fixes confusing error message if the user does reference a key column as their Timestamp column: ```sql CREATE TABLE FOO (K BIGINT PRIMARY KEY, NAME STRING) WITH (TIMESTAMP='K', ...); -- error: The TIMESTAMP column set in the WITH clause does not exist in the schema: K ``` When clearly `K` is part of the schema! Co-authored-by: Andy Coates <[email protected]>
- Loading branch information
1 parent
cfa65da
commit 286ce08
Showing
55 changed files
with
2,406 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.