[Groonga-commit] pgroonga/pgroonga.github.io at cd9889c [master] Fix syntax

Back to archive index

Kouhei Sutou null+****@clear*****
Thu Oct 29 11:19:22 JST 2015


Kouhei Sutou	2015-10-29 11:19:22 +0900 (Thu, 29 Oct 2015)

  New Revision: cd9889c12b719a3eb129e5e1981cd2acb5e47ca4
  https://github.com/pgroonga/pgroonga.github.io/commit/cd9889c12b719a3eb129e5e1981cd2acb5e47ca4

  Message:
    Fix syntax

  Modified files:
    _po/ja/reference/create-index-using-pgroonga.po
    _po/ja/reference/operators/query.po
    ja/reference/create-index-using-pgroonga.md
    ja/reference/operators/query.md
    reference/create-index-using-pgroonga.md

  Modified: _po/ja/reference/create-index-using-pgroonga.po (+2 -2)
===================================================================
--- _po/ja/reference/create-index-using-pgroonga.po    2015-10-28 23:40:42 +0900 (891ff0e)
+++ _po/ja/reference/create-index-using-pgroonga.po    2015-10-29 11:19:22 +0900 (7a3b6ba)
@@ -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"
@@ -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 ""
 

  Modified: _po/ja/reference/operators/query.po (+7 -1)
===================================================================
--- _po/ja/reference/operators/query.po    2015-10-28 23:40:42 +0900 (9c2d350)
+++ _po/ja/reference/operators/query.po    2015-10-29 11:19:22 +0900 (8882e23)
@@ -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"
@@ -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 "## 参考"
 

  Modified: ja/reference/create-index-using-pgroonga.md (+1 -1)
===================================================================
--- ja/reference/create-index-using-pgroonga.md    2015-10-28 23:40:42 +0900 (42d2443)
+++ ja/reference/create-index-using-pgroonga.md    2015-10-29 11:19:22 +0900 (261e7f7)
@@ -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`オペレータークラスを指定する必要があります。

  Modified: ja/reference/operators/query.md (+4 -0)
===================================================================
--- ja/reference/operators/query.md    2015-10-28 23:40:42 +0900 (ccf1f58)
+++ ja/reference/operators/query.md    2015-10-29 11:19:22 +0900 (7e1af94)
@@ -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)

  Modified: reference/create-index-using-pgroonga.md (+1 -1)
===================================================================
--- reference/create-index-using-pgroonga.md    2015-10-28 23:40:42 +0900 (81afdb9)
+++ reference/create-index-using-pgroonga.md    2015-10-29 11:19:22 +0900 (ab8c954)
@@ -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.
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-commit mailing list
Back to archive index