We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03aa500 commit e7e655fCopy full SHA for e7e655f
1 file changed
airflow/hooks/mssql_hook.py
@@ -22,4 +22,7 @@ def get_conn(self):
22
conn.login,
23
conn.password,
24
conn.schema)
25
- return conn
+ return conn
26
+
27
+ def set_autocommit(self, conn, autocommit):
28
+ conn.autocommit(autocommit)
0 commit comments