-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Closed
Labels
EnhancementEnhance existing functionalityEnhance existing functionalityFrictionGood first issueA great place to get familiar with the codebaseA great place to get familiar with the codebaseSQLIssues or changes relating to SQL executionIssues or changes relating to SQL execution
Description
Is your feature request related to a problem?
A small usability improvement would be to have IF EXISTS in TRUNCATE TABLE so it will not error when table is missing, as we have with DROP TABLE
Describe the solution you'd like.
Both
TRUNCATE TABLE ratings;
and
TRUNCATE TABLE IF EXISTS ratings;
Describe alternatives you've considered.
At the moment I truncate and get an error. It'd be nice if I didn't need error control when I choose to ignore the fact table might yet not exist.
Full Name:
javier ramirez
Affiliation:
questdb
Additional context
Very minor thing. If implementation is not trivial, happy to ignore it.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
EnhancementEnhance existing functionalityEnhance existing functionalityFrictionGood first issueA great place to get familiar with the codebaseA great place to get familiar with the codebaseSQLIssues or changes relating to SQL executionIssues or changes relating to SQL execution