From 8318a98a60dabf0919f4998e4df32db804ffd3bb Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sat, 10 Nov 2018 21:10:51 -0500 Subject: Add Sequence to StrSQLCompiler Added :class:`.Sequence` to the "string SQL" system that will render a meaningful string expression (``""``) when stringifying without a dialect a statement that includes a "sequence nextvalue" expression, rather than raising a compilation error. Fixes: #4144 Change-Id: Ia910f0e22008a7cde7597365954ede324101cf4d --- lib/sqlalchemy/sql/compiler.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib/sqlalchemy/sql/compiler.py') diff --git a/lib/sqlalchemy/sql/compiler.py b/lib/sqlalchemy/sql/compiler.py index 27ee4afc6..87a9f859b 100644 --- a/lib/sqlalchemy/sql/compiler.py +++ b/lib/sqlalchemy/sql/compiler.py @@ -2407,6 +2407,9 @@ class StrSQLCompiler(SQLCompiler): def visit_json_path_getitem_op_binary(self, binary, operator, **kw): return self.visit_getitem_binary(binary, operator, **kw) + def visit_sequence(self, seq, **kw): + return "" % self.preparer.format_sequence(seq) + def returning_clause(self, stmt, returning_cols): columns = [ self._label_select_column(None, c, True, False, {}) -- cgit v1.2.1