We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b644eb commit 21250bdCopy full SHA for 21250bd
actions/lib/base_action.py
@@ -118,6 +118,10 @@ def db_connection(self, kwargs_dict):
118
default_driver = DEFAULT_KNOWN_DRIVER_CONNECTORS.get(connection['drivername'], None)
119
if default_driver:
120
connection['drivername'] = default_driver
121
+
122
+ # Check if query is in de connection
123
+ if 'query' in connection:
124
+ connection['query'] = ()
125
126
# Format the connection string
127
database_connection_string = URL(**connection)
0 commit comments