Feature: Add DROP IF EXISTS
for node/rel tables
#3775
Labels
feature
New features or missing components of existing features
DROP IF EXISTS
for node/rel tables
#3775
API
Other
Description
Based on David's comment, when using the
DROP TABLE
command, it can be useful to check if the table exists prior to running the statement, otherwise it may result in a Runtime error.Seems like the
DROP [IF EXISTS]
statement exists in PostgreSQL, so it's intuitive enough to add to our grammar, like we didCREATE NODE TABLE IF NOT EXISTS
.The text was updated successfully, but these errors were encountered: