summaryrefslogtreecommitdiffstats
path: root/www/mnoGoSearch-current/files/msql_ispell.txt
blob: 12936c8bf2524b7579a4ebf6fe75fb89686914c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
DROP TABLE affix\g
DROP TABLE spell\g

CREATE TABLE affix (
  flag char(1)  NOT NULL,
  type char(1)  NOT NULL,
  lang char(3)  NOT NULL,
  mask char(32) NOT NULL,
  find char(32) NOT NULL,
  repl char(32) NOT NULL
) \g

CREATE TABLE spell (
  word char(64) NOT NULL,
  flag text(32) NOT NULL,
  lang char(3) NOT NULL
) \g


CREATE  INDEX affix_flag ON affix (flag)\g
CREATE  INDEX spell_word ON spell (word)\g
OpenPOWER on IntegriCloud