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
|
table_create Records TABLE_PAT_KEY Int32
[[0,0.0,0.0],true]
load --table Records
[
{"_key": 1},
{"_key": 2},
{"_key": 3},
{"_key": 4},
{"_key": 5},
{"_key": 6},
{"_key": 7},
{"_key": 8},
{"_key": 9},
{"_key": 10}
]
[[0,0.0,0.0],10]
select Records --columns[uint64].stage initial --columns[uint64].type UInt64 --columns[uint64].value _key --command_version 3 --output_type apache-arrow
return_code: int32
start_time: timestamp[ns]
elapsed_time: double
error_message: string
error_file: string
error_line: uint32
error_function: string
error_input_file: string
error_input_line: int32
error_input_command: string
-- metadata --
GROONGA:data_type: metadata
return_code start_time elapsed_time error_message error_file error_line error_function error_input_file error_input_line error_input_command
(int32) (timestamp) (double) (utf8) (utf8) (uint32) (utf8) (utf8) (int32) (utf8)
0 0 1970-01-01T09:00:00+09:00 0.000000 (null) (null) (null) (null) (null) (null) (null)
========================================
_id: uint32
_key: int32
uint64: uint64
-- metadata --
GROONGA:n_hits: 10
_id _key uint64
(uint32) (int32) (uint64)
0 1 1 1
1 2 2 2
2 3 3 3
3 4 4 4
4 5 5 5
5 6 6 6
6 7 7 7
7 8 8 8
8 9 9 9
9 10 10 10
|