Skip to content

Commit

Permalink
activated streams support from db-api
Browse files Browse the repository at this point in the history
  • Loading branch information
daimor committed Nov 10, 2022
1 parent eed71e6 commit e2f16f5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
intersystems_iris>=3.3.0b1
intersystems_iris>=3.3.0b7
SQLAlchemy>=1.4
8 changes: 3 additions & 5 deletions sqlalchemy_iris/requirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -652,8 +652,7 @@ def binary_literals(self):
"""

# return exclusions.open()
return exclusions.closed()
return exclusions.open()

@property
def autocommit(self):
Expand Down Expand Up @@ -833,16 +832,15 @@ def text_type(self):
"""Target database must support an unbounded Text() "
"type such as TEXT or CLOB"""

# return exclusions.open()
return exclusions.closed()
return exclusions.open()

@property
def empty_strings_varchar(self):
"""target database can persist/return an empty string with a
varchar.
"""
# return exclusions.open()
return exclusions.open()
return exclusions.closed()

@property
Expand Down

0 comments on commit e2f16f5

Please sign in to comment.