-
Notifications
You must be signed in to change notification settings - Fork 205
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
feat: support auto create table config #713
feat: support auto create table config #713
Conversation
Co-authored-by: Jiacai Liu <dev@liujiacai.net>
Codecov Report
@@ Coverage Diff @@
## main #713 +/- ##
==========================================
- Coverage 68.35% 68.12% -0.23%
==========================================
Files 286 287 +1
Lines 44762 45161 +399
==========================================
+ Hits 30596 30765 +169
- Misses 14166 14396 +230
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
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.
LGTM
* support auto create config * Update server/src/config.rs Co-authored-by: Jiacai Liu <dev@liujiacai.net> * define a new struct --------- Co-authored-by: Jiacai Liu <dev@liujiacai.net>
Which issue does this PR close?
Closes #
Rationale for this change
Currently CeresDB create table automatically when writing data, if table does not exist, the time column is named as 'timestamp' which may not be not the same as user defined
What changes are included in this PR?
Add config item of
auto_create_tables
Are there any user-facing changes?
User can configure `auto_create_tables' to allow the automatic creation of tables when writing data.
How does this change test