From 986564fbb44f3cabd1dbe98e59f6646576a34e0a Mon Sep 17 00:00:00 2001 From: mohammadrezapourreza Date: Tue, 12 Mar 2024 13:59:14 -0400 Subject: [PATCH] DH-5583/filtering the create table commands --- dataherald/sql_database/base.py | 1 + 1 file changed, 1 insertion(+) diff --git a/dataherald/sql_database/base.py b/dataherald/sql_database/base.py index c9ae18ea..174618d0 100644 --- a/dataherald/sql_database/base.py +++ b/dataherald/sql_database/base.py @@ -185,6 +185,7 @@ def parser_to_filter_commands(cls, command: str) -> str: "TRUNCATE", "MERGE", "EXECUTE", + "CREATE" ] parsed_command = sqlparse.parse(command)