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

Unable to specify extra table options in CREATE TABLE statement #3476

Closed
evenyag opened this issue Mar 11, 2024 · 0 comments · Fixed by #3484
Closed

Unable to specify extra table options in CREATE TABLE statement #3476

evenyag opened this issue Mar 11, 2024 · 0 comments · Fixed by #3484

Comments

@evenyag
Copy link
Contributor

evenyag commented Mar 11, 2024

What type of bug is this?

Unexpected error, User Experience

What subsystems are affected?

Table Engine

Minimal reproduce step

Executes the following statement

CREATE TABLE IF NOT EXISTS test_table (
  ts TIMESTAMP(3) NOT NULL DEFAULT current_timestamp(),
  id INT NULL,
  content STRING NULL,
  TIME INDEX (ts),
  PRIMARY KEY (id)
)
WITH
(
    'compaction.twcs.time_window' = '1d'
);

What did you expect to see?

A table is created

What did you see instead?

ERROR 1815 (HY000): Invalid table option key: compaction.twcs.time_window

What operating system did you use?

NA

What version of GreptimeDB did you use?

0.7

Relevant log output and stack trace

ERROR 1815 (HY000): Invalid table option key: compaction.twcs.time_window
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant