File: bench-query-optimizer-ddl.grn

package info (click to toggle)
groonga 15.2.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 171,500 kB
  • sloc: ansic: 772,536; cpp: 51,530; ruby: 40,538; javascript: 10,250; yacc: 7,045; sh: 5,622; python: 2,821; makefile: 1,677
file content (16 lines) | stat: -rw-r--r-- 607 bytes parent folder | download | duplicates (19)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
table_create Entries TABLE_PAT_KEY ShortText
column_create Entries name COLUMN_SCALAR ShortText
column_create Entries description COLUMN_SCALAR Text
column_create Entries last_modified COLUMN_SCALAR Time

table_create Bigram TABLE_PAT_KEY ShortText \
  --default_tokenizer TokenBigram \
  --normalizer NormalizerAuto
column_create Bigram entries_name COLUMN_INDEX|WITH_POSITION \
  Entries name
column_create Bigram entries_description COLUMN_INDEX|WITH_POSITION \
  Entries description

table_create Times TABLE_PAT_KEY Time
column_create Times entries_last_modified COLUMN_INDEX \
  Entries last_modified