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 7d20463 commit df42172Copy full SHA for df42172
sqlalchemy_redshift/dialect.py
@@ -1240,6 +1240,9 @@ class RedshiftDialect_psycopg2(
1240
):
1241
supports_statement_cache = False
1242
1243
+ def _set_backslash_escapes(self, connection):
1244
+ self._backslash_escapes = "off"
1245
+
1246
1247
# Add RedshiftDialect synonym for backwards compatibility.
1248
RedshiftDialect = RedshiftDialect_psycopg2
@@ -1250,6 +1253,9 @@ class RedshiftDialect_psycopg2cffi(
1250
1253
1251
1254
1252
1255
1256
1257
1258
1259
1260
class RedshiftDialect_redshift_connector(RedshiftDialectMixin, PGDialect):
1261
0 commit comments