We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32fb4ab commit 2a21ef2Copy full SHA for 2a21ef2
sample/sample2.py
@@ -19,6 +19,9 @@
19
griddb.ContainerType.TIME_SERIES, True)
20
ts = gridstore.put_container(conInfo)
21
22
+#Put row to timeseries with TIMESTAMP value and None. None means NULL value
23
+ts.put(['2020-10-01T15:00:00.000Z', True, None])
24
+
25
#Put row to timeseries with current timestamp
26
now = datetime.datetime.utcnow()
27
ts.put([now, False, 100])
0 commit comments