Skip to content

Commit

Permalink
Call rowcount method in exasol provider (apache#44022)
Browse files Browse the repository at this point in the history
  • Loading branch information
Briimbo committed Jan 17, 2025
1 parent 9984dcd commit 602793f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion providers/src/airflow/providers/exasol/hooks/exasol.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ def run(
else:
results.append(result)
self.descriptions.append(self.get_description(exa_statement))
self.log.info("Rows affected: %s", exa_statement.rowcount)
self.log.info("Rows affected: %s", exa_statement.rowcount())

# If autocommit was set to False or db does not support autocommit, we do a manual commit.
if not self.get_autocommit(conn):
Expand Down

0 comments on commit 602793f

Please sign in to comment.