Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions marklogic/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,25 +127,25 @@ def process_multipart_mixed_response(self, response):
@property
def documents(self):
if not hasattr(self, "_documents"):
self._documents = DocumentManager(self)
self._documents = DocumentManager(session=self)
return self._documents

@property
def rows(self):
if not hasattr(self, "_rows"):
self._rows = RowManager(self)
self._rows = RowManager(session=self)
return self._rows

@property
def transactions(self):
if not hasattr(self, "_transactions"):
self._transactions = TransactionManager(self)
self._transactions = TransactionManager(session=self)
return self._transactions

@property
def eval(self):
if not hasattr(self, "_eval"):
self._eval = EvalManager(self)
self._eval = EvalManager(session=self)
return self._eval

__primitive_value_converters = {
Expand Down