Skip to content

Commit cbc7663

Browse files
committed
fix syntax for inline next value
1 parent b461229 commit cbc7663

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sqlalchemy_monetdb/compiler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def visit_mod(self, binary, **kw):
7575
return self.process(binary.left) + " %% " + self.process(binary.right)
7676

7777
def visit_sequence(self, seq):
78-
exc = "(SELECT NEXT VALUE FOR %s)" \
78+
exc = "(NEXT VALUE FOR %s)" \
7979
% self.dialect.identifier_preparer.format_sequence(seq)
8080
return exc
8181

0 commit comments

Comments
 (0)