Skip to content

Commit e2f16f5

Browse files
committed
activated streams support from db-api
1 parent eed71e6 commit e2f16f5

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
intersystems_iris>=3.3.0b1
1+
intersystems_iris>=3.3.0b7
22
SQLAlchemy>=1.4

sqlalchemy_iris/requirements.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -652,8 +652,7 @@ def binary_literals(self):
652652
653653
"""
654654

655-
# return exclusions.open()
656-
return exclusions.closed()
655+
return exclusions.open()
657656

658657
@property
659658
def autocommit(self):
@@ -833,16 +832,15 @@ def text_type(self):
833832
"""Target database must support an unbounded Text() "
834833
"type such as TEXT or CLOB"""
835834

836-
# return exclusions.open()
837-
return exclusions.closed()
835+
return exclusions.open()
838836

839837
@property
840838
def empty_strings_varchar(self):
841839
"""target database can persist/return an empty string with a
842840
varchar.
843841
844842
"""
845-
# return exclusions.open()
843+
return exclusions.open()
846844
return exclusions.closed()
847845

848846
@property

0 commit comments

Comments
 (0)