From c221ed77e22855980425d9764ecd262d7a2ec5c8 Mon Sep 17 00:00:00 2001 From: Mark Huang Date: Tue, 30 Jan 2007 23:08:16 +0000 Subject: [PATCH] support CREATE OR REPLACE --- tools/dzombie.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tools/dzombie.py b/tools/dzombie.py index 02a01bc..e3c170a 100755 --- a/tools/dzombie.py +++ b/tools/dzombie.py @@ -37,8 +37,11 @@ try: line = lines[index].strip() # find all created objects if line.startswith("CREATE"): - item_type = line.split(" ")[1].strip() - item_name = line.split(" ")[2].strip() + line_parts = line.split(" ") + if line_parts[1:3] == ['OR', 'REPLACE']: + line_parts = line_parts[2:] + item_type = line_parts[1].strip() + item_name = line_parts[2].strip() if item_type.upper() in ['TABLE']: while index < len(lines): index = index + 1 -- 2.43.0