Skip to content

Commit 48d1d66

Browse files
committed
we have is_distinct
enable threadpool (solveing some concurrency issues)
1 parent bb1c2c7 commit 48d1d66

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sqlalchemy_monetdb/dialect.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@ class MonetDialect(default.DefaultDialect):
5757
supports_default_values = True
5858
supports_native_boolean = True
5959
supports_multivalues_insert = True
60-
poolclass = pool.SingletonThreadPool
60+
poolclass = pool.QueuePool
6161
supports_unicode_statements = True
6262
postfetch_lastrowid = True
63-
supports_is_distinct_from = False
63+
supports_is_distinct_from = True
6464

6565
statement_compiler = MonetCompiler
6666
ddl_compiler = MonetDDLCompiler

0 commit comments

Comments
 (0)