diff options
author | Dirk Engling <erdgeist@erdgeist.org> | 2019-03-04 02:06:39 +0100 |
---|---|---|
committer | Dirk Engling <erdgeist@erdgeist.org> | 2019-03-04 02:06:39 +0100 |
commit | 5ac7e2e4229dab3124ad9d1556ea714a3149fff0 (patch) | |
tree | 9e484d06b3c4ef3163f351e87aeb0984d946214c /src/postprocess | |
parent | 13773527601bebdbe224ec18ccfdc3cb75a0aa90 (diff) |
Add quoting
Diffstat (limited to 'src/postprocess')
-rw-r--r-- | src/postprocess/postgres.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/postprocess/postgres.txt b/src/postprocess/postgres.txt index 943a88a..e47ca00 100644 --- a/src/postprocess/postgres.txt +++ b/src/postprocess/postgres.txt | |||
@@ -62,7 +62,7 @@ CREATE INDEX trgm_idx_web ON indexed_view_web USING gin (value gi | |||
62 | CREATE INDEX trgm_idx_email ON indexed_view_email USING gin (value gin_trgm_ops); | 62 | CREATE INDEX trgm_idx_email ON indexed_view_email USING gin (value gin_trgm_ops); |
63 | 63 | ||
64 | # slow way: | 64 | # slow way: |
65 | SELECT * FROM Telefonbuch WHERE nachname = 'Engling'; | 65 | SELECT * FROM Telefonbuch WHERE nachname = 'CCC'; |
66 | 66 | ||
67 | # using the index: | 67 | # using the index: |
68 | SELECT * FROM Telefonbuch | 68 | SELECT * FROM Telefonbuch |