Skip to content

Commit 633e245

Browse files
committed
rm prints and cleanup
1 parent ba3c113 commit 633e245

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

dbt/adapters/sqlite/connections.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,9 @@ def open(cls, connection):
9797

9898
raise FailedToConnectException(str(e))
9999
except Exception as e:
100-
print(f"dunno what happened here: {e}")
100+
print(f"Unknown error opening SQLite connection: {e}")
101101
raise str(e)
102102

103-
print("finished open")
104-
105103
@classmethod
106104
def get_status(cls, cursor: sqlite3.Cursor):
107105
return f"OK"# {cursor.rowcount}"

dbt/adapters/sqlite/impl.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@ def rename_relation(self, from_relation, to_relation):
3939
self.cache_renamed(from_relation, to_relation)
4040

4141
existing_relation_type = from_relation.type
42-
print("existing_relation_type=" + existing_relation_type)
43-
print("IS_VIEW=" + str(from_relation.is_view))
4442

4543
if existing_relation_type == 'table':
4644

0 commit comments

Comments
 (0)