@@ -238,20 +238,17 @@ def execute_transaction(self,
238238 ArangoDB server waits indefinitely. If not set, system default
239239 value is used.
240240 :type timeout: int
241- :param max_size: Max transaction size limit in bytes. Applies only
242- to RocksDB storage engine.
241+ :param max_size: Max transaction size limit in bytes.
243242 :type max_size: int
244243 :param allow_implicit: If set to True, undeclared read collections are
245244 loaded lazily. If set to False, transaction fails on any undeclared
246245 collections.
247246 :type allow_implicit: bool
248247 :param intermediate_commit_count: Max number of operations after which
249- an intermediate commit is performed automatically. Applies only to
250- RocksDB storage engine.
248+ an intermediate commit is performed automatically.
251249 :type intermediate_commit_count: int
252250 :param intermediate_commit_size: Max size of operations in bytes after
253- which an intermediate commit is performed automatically. Applies
254- only to RocksDB storage engine.
251+ which an intermediate commit is performed automatically.
255252 :type intermediate_commit_size: int
256253 :return: Return value of **command**.
257254 :rtype: str | unicode
@@ -2490,8 +2487,7 @@ def begin_transaction(self,
24902487 given, a default value is used. Setting it to 0 disables the
24912488 timeout.
24922489 :type lock_timeout: int
2493- :param max_size: Max transaction size in bytes. Applicable to RocksDB
2494- storage engine only.
2490+ :param max_size: Max transaction size in bytes.
24952491 :type max_size:
24962492 :return: Database API wrapper object specifically for transactions.
24972493 :rtype: arango.database.TransactionDatabase
@@ -2612,8 +2608,7 @@ class TransactionDatabase(Database):
26122608 :param lock_timeout: Timeout for waiting on collection locks. If not given,
26132609 a default value is used. Setting it to 0 disables the timeout.
26142610 :type lock_timeout: int
2615- :param max_size: Max transaction size in bytes. Applicable to RocksDB
2616- storage engine only.
2611+ :param max_size: Max transaction size in bytes.
26172612 :type max_size: int
26182613 """
26192614
0 commit comments