Navigation Menu

Skip to content

Commit

Permalink
Fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Oct 29, 2015
1 parent f7ee004 commit cd9889c
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
4 changes: 2 additions & 2 deletions _po/ja/reference/create-index-using-pgroonga.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2015-10-24 09:36+0900\n"
"PO-Revision-Date: 2015-10-28 23:36+0900\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
Expand Down Expand Up @@ -80,7 +80,7 @@ msgid ""
"```sql\n"
"CREATE INDEX ${INDEX_NAME}\n"
" ON ${TABLE_NAME}\n"
" USING pgroonga (${COLUMN}) pgroonga.varchar_full_text_search_ops;\n"
" USING pgroonga (${COLUMN} pgroonga.varchar_full_text_search_ops);\n"
"```"
msgstr ""

Expand Down
8 changes: 7 additions & 1 deletion _po/ja/reference/operators/query.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2015-10-25 22:25+0900\n"
"PO-Revision-Date: 2015-10-28 23:36+0900\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
Expand Down Expand Up @@ -137,6 +137,12 @@ msgid ""
" for prefix search."
msgstr "前方一致検索のために`カラム名:^値`という構文を使うことができません。前方一致検索には`値*`を使ってください。"

msgid "## Sequential scan"
msgstr ""

msgid "TODO: Describe about `SET search_path = \"$user\",public,pgroonga,pg_catalog;`."
msgstr ""

msgid "## See also"
msgstr "## 参考"

Expand Down
2 changes: 1 addition & 1 deletion ja/reference/create-index-using-pgroonga.md
Expand Up @@ -32,7 +32,7 @@ CREATE INDEX ${INDEX_NAME}
```sql
CREATE INDEX ${INDEX_NAME}
ON ${TABLE_NAME}
USING pgroonga (${COLUMN}) pgroonga.varchar_full_text_search_ops;
USING pgroonga (${COLUMN} pgroonga.varchar_full_text_search_ops);
```

この場合は`pgroonga.varchar_fulltext_search_ops`オペレータークラスを指定する必要があります。
Expand Down
4 changes: 4 additions & 0 deletions ja/reference/operators/query.md
Expand Up @@ -58,6 +58,10 @@ SELECT * FROM memos WHERE content @@ 'PGroonga OR PostgreSQL';

前方一致検索のために`カラム名:^値`という構文を使うことができません。前方一致検索には`値*`を使ってください。

## Sequential scan

TODO: Describe about `SET search_path = "$user",public,pgroonga,pg_catalog;`.

## 参考

* [`%%`演算子](match.html)
Expand Down
2 changes: 1 addition & 1 deletion reference/create-index-using-pgroonga.md
Expand Up @@ -32,7 +32,7 @@ Here is a basic syntax for creating a full text search index for a `varchar` typ
```sql
CREATE INDEX ${INDEX_NAME}
ON ${TABLE_NAME}
USING pgroonga (${COLUMN}) pgroonga.varchar_full_text_search_ops;
USING pgroonga (${COLUMN} pgroonga.varchar_full_text_search_ops);
```

You need to specify `pgroonga.varchar_fulltext_search_ops` operator class for the case.
Expand Down

0 comments on commit cd9889c

Please sign in to comment.