File: mix_int.test

package info (click to toggle)
groonga 16.0.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 188,416 kB
  • sloc: ansic: 772,827; cpp: 52,396; ruby: 40,556; javascript: 10,250; yacc: 7,045; sh: 5,627; python: 2,821; makefile: 1,679
file content (19 lines) | stat: -rw-r--r-- 840 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
table_create Values TABLE_NO_KEY
column_create Values int8_value COLUMN_SCALAR Int8
column_create Values uint8_value COLUMN_SCALAR UInt8
column_create Values int16_value COLUMN_SCALAR Int16
column_create Values uint16_value COLUMN_SCALAR UInt16
column_create Values int32_value COLUMN_SCALAR Int32
column_create Values uint32_value COLUMN_SCALAR UInt32
column_create Values int64_value COLUMN_SCALAR Int64
column_create Values uint64_value COLUMN_SCALAR UInt64

load --table Values
[
{"int8_value":-8, "uint8_value": 8, "int16_value":-16, "uint16_value": 16, "int32_value":-32, "uint32_value": 32, "int64_value":-64, "uint64_value": 64}
]

select Values \
  --filter true \
  --output_columns '_id,_score' \
  --scorer '_score = max(int8_value, uint8_value, int16_value, uint16_value, int32_value, uint32_value, int64_value, uint64_value)'