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

Method timestamp

cassandra/cqlengine/query.py:1171–1177  ·  view source on GitHub ↗

Allows for custom timestamps to be saved with the record.

(self, timestamp)

Source from the content-addressed store, hash-verified

1169 return clone
1170
1171 def timestamp(self, timestamp):
1172 """
1173 Allows for custom timestamps to be saved with the record.
1174 """
1175 clone = copy.deepcopy(self)
1176 clone._timestamp = timestamp
1177 return clone
1178
1179 def if_not_exists(self):
1180 """

Calls

no outgoing calls