Skip to content

Commit 7d7d80c

Browse files
committed
removed memoized
1 parent e39a6a6 commit 7d7d80c

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

sqlalchemy_iris/base.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -887,14 +887,6 @@ def create_cursor(self):
887887
cursor = self._dbapi_connection.cursor()
888888
return cursor
889889

890-
@util.non_memoized_property
891-
def rowcount(self) -> int:
892-
print("_rowcount", self._rowcount, self.cursor._closed, self.cursor.rowcount)
893-
if self._rowcount is not None:
894-
return self._rowcount
895-
else:
896-
return self.cursor.rowcount
897-
898890

899891
colspecs = {
900892
sqltypes.Boolean: IRISBoolean,

0 commit comments

Comments
 (0)