aboutsummaryrefslogtreecommitdiff
path: root/src/com/benlinskey/grdbc/LexiconCreator.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/benlinskey/grdbc/LexiconCreator.java')
-rw-r--r--src/com/benlinskey/grdbc/LexiconCreator.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/com/benlinskey/grdbc/LexiconCreator.java b/src/com/benlinskey/grdbc/LexiconCreator.java
index 3a242ff..f33007b 100644
--- a/src/com/benlinskey/grdbc/LexiconCreator.java
+++ b/src/com/benlinskey/grdbc/LexiconCreator.java
@@ -203,7 +203,8 @@ public class LexiconCreator {
// Create an index on the three columns matched against search queries.
String sql = "CREATE INDEX searchIndex ON " + TABLE_NAME
- + " (betaNoSymbols, betaSymbols, greekNoSymbols)";
+ + " (betaNoSymbols, betaSymbols, greekNoSymbols, "
+ + "greekLowercase)";
try {
Statement statement = connection.createStatement();
statement.executeUpdate(sql);