Skip to content

Commit

Permalink
removed debug
Browse files Browse the repository at this point in the history
  • Loading branch information
daimor committed Oct 25, 2022
1 parent e5b844e commit be154be
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions sqlalchemy_iris/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -610,12 +610,10 @@ def _fix_for_params(self, query, params, many=False):

def do_execute(self, cursor, query, params, context=None):
query, params = self._fix_for_params(query, params)
print('do_execute', query, params)
cursor.execute(query, params)

def do_executemany(self, cursor, query, params, context=None):
query, params = self._fix_for_params(query, params, True)
print('do_execute_many', query, params)
cursor.executemany(query, params)

def get_schema(self, schema=None):
Expand Down

0 comments on commit be154be

Please sign in to comment.