1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
plugin_register functions/time
[[0,0.0,0.0],true]
table_create Records TABLE_NO_KEY
[[0,0.0,0.0],true]
column_create Records timestamps COLUMN_VECTOR Time
[[0,0.0,0.0],true]
load --table Records
[
{"timestamps": ["2016-04-30 23:59:59.999999"]},
{"timestamps": ["2016-05-01 00:00:00.000000"]},
{"timestamps": ["2016-05-01 00:00:00.000001"]},
{"timestamps": ["2016-05-07 23:59:59.999999"]},
{"timestamps": ["2016-05-08 00:00:00.000000"]},
{"timestamps": ["2016-05-08 00:00:00.000001"]}
]
[[0,0.0,0.0],6]
select Records --sort_keys _id --limit -1 --output_columns 'timestamps, time_classify_week(timestamps)'
[
[
0,
0.0,
0.0
],
[
[
[
6
],
[
[
"timestamps",
"Time"
],
[
"time_classify_week",
null
]
],
[
[
1462028399.999999
],
[
1461423600.0
]
],
[
[
1462028400.0
],
[
1462028400.0
]
],
[
[
1462028400.000001
],
[
1462028400.0
]
],
[
[
1462633199.999999
],
[
1462028400.0
]
],
[
[
1462633200.0
],
[
1462633200.0
]
],
[
[
1462633200.000001
],
[
1462633200.0
]
]
]
]
]
|