From 26f1efcb055b70fe86a643338b65c849f9e2fa4e Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Wed, 7 Apr 2021 17:51:34 -0400 Subject: support multivalues insert on strsqlcompiler Fixed the "stringify" compiler to support a basic stringification of a "multirow" INSERT statement, i.e. one with multiple tuples following the VALUES keyword. Change-Id: I1fe38d204d9965275d3a72157d5a72a53bec4b11 --- lib/sqlalchemy/engine/default.py | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/sqlalchemy') diff --git a/lib/sqlalchemy/engine/default.py b/lib/sqlalchemy/engine/default.py index 5193a0273..0242d9812 100644 --- a/lib/sqlalchemy/engine/default.py +++ b/lib/sqlalchemy/engine/default.py @@ -790,6 +790,7 @@ class StrCompileDialect(DefaultDialect): supports_native_boolean = True + supports_multivalues_insert = True supports_simple_order_by_label = True colspecs = { -- cgit v1.2.1