MCPcopy Index your code
hub / github.com/apache/cassandra-python-driver / batch

Method batch

cassandra/cqlengine/query.py:1382–1386  ·  view source on GitHub ↗
(self, batch_obj)

Source from the content-addressed store, hash-verified

1380 return results
1381
1382 def batch(self, batch_obj):
1383 if batch_obj is not None and not isinstance(batch_obj, BatchQuery):
1384 raise CQLEngineException('batch_obj must be a BatchQuery instance or None')
1385 self._batch = batch_obj
1386 return self
1387
1388 def _delete_null_columns(self, conditionals=None):
1389 """

Calls 1

CQLEngineExceptionClass · 0.90