Kouhei Sutou
null+****@clear*****
Wed Aug 16 21:56:33 JST 2017
Kouhei Sutou 2017-08-16 21:56:33 +0900 (Wed, 16 Aug 2017) New Revision: f12049ed533f5720c3fbfb34610570667f487fa3 https://github.com/pgroonga/pgroonga.github.io/commit/f12049ed533f5720c3fbfb34610570667f487fa3 Message: Update for 2.0.0 Modified files: _po/ja/how-to/auto-complete.po _po/ja/reference/grant-usage-on-schema-pgroonga.po _po/ja/reference/index.po how-to/auto-complete.md ja/how-to/auto-complete.md ja/reference/grant-usage-on-schema-pgroonga.md ja/reference/index.md reference/grant-usage-on-schema-pgroonga.md reference/index.md Modified: _po/ja/how-to/auto-complete.po (+4 -4) =================================================================== --- _po/ja/how-to/auto-complete.po 2017-08-16 21:48:56 +0900 (1d67625) +++ _po/ja/how-to/auto-complete.po 2017-08-16 21:56:33 +0900 (5609ab6) @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2017-07-20 15:32+0900\n" +"PO-Revision-Date: 2017-08-15 00:28+0900\n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -66,13 +66,13 @@ msgstr "サンプルのインデックス定義を示します。" msgid "" "```sql\n" "CREATE INDEX pgroonga_terms_prefix_search ON terms USING pgroonga\n" -" (term pgroonga.text_term_search_ops_v2,\n" -" readings pgroonga.text_array_term_search_ops_v2);" +" (term pgroonga_text_term_search_ops_v2,\n" +" readings pgroonga_text_array_term_search_ops_v2);" msgstr "" msgid "" "CREATE INDEX pgroonga_terms_full_text_search ON terms USING pgroonga\n" -" (term pgroonga.text_full_text_search_ops_v2)\n" +" (term)\n" " WITH (tokenizer = 'TokenBigramSplitSymbolAlphaDigit');\n" "```" msgstr "" Modified: _po/ja/reference/grant-usage-on-schema-pgroonga.po (+8 -1) =================================================================== --- _po/ja/reference/grant-usage-on-schema-pgroonga.po 2017-08-16 21:48:56 +0900 (df78b34) +++ _po/ja/reference/grant-usage-on-schema-pgroonga.po 2017-08-16 21:56:33 +0900 (686a887) @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2016-11-11 23:10+0900\n" +"PO-Revision-Date: 2017-08-16 21:55+0900\n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,6 +21,13 @@ msgid "# `GRANT USAGE ON SCHEME pgroonga`" msgstr "" msgid "" +"`pgroonga` schema is deprecated since 2.0.0. Use `pgroonga_*` functions, opera" +"tors and operator classes in the current schema for newly written code." +msgstr "" +"`pgroonga`スキーマは2.0.0から非推奨です。新しく書くコードでは`pgroonga`スキーマではなくカレントスキーマに定義されている`pgroo" +"nga_*`関数・演算子・演算子クラスを使ってください。" + +msgid "" "PGroonga defines functions, operators, operator classes and so on into `pgroon" "ga` schema. Only superuser can use features in `pgroonga` schema by default. S" "uperuser needs to grant `USAGE` privilege on `pgroonga` schema to normal users" Modified: _po/ja/reference/index.po (+8 -1) =================================================================== --- _po/ja/reference/index.po 2017-08-16 21:48:56 +0900 (c437ce8) +++ _po/ja/reference/index.po 2017-08-16 21:56:33 +0900 (9651c29) @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2017-08-14 23:08+0900\n" +"PO-Revision-Date: 2017-08-16 21:55+0900\n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -34,6 +34,13 @@ msgid "## `pgroonga` schema" msgstr "## `pgroonga`スキーマ" msgid "" +"`pgroonga` schema is deprecated since 2.0.0. Use `pgroonga_*` functions, opera" +"tors and operator classes in the current schema for newly written code." +msgstr "" +"`pgroonga`スキーマは2.0.0から非推奨です。新しく書くコードでは`pgroonga`スキーマではなくカレントスキーマに定義されている`pgroo" +"nga_*`関数・演算子・演算子クラスを使ってください。" + +msgid "" "PGroonga defines functions, operators, operator classes and so on into `pgroon" "ga` schema. Only superuser can use features in `pgroonga` schema by default. S" "uperuser needs to grant `USAGE` privilege on `pgroonga` schema to normal users" Modified: how-to/auto-complete.md (+3 -3) =================================================================== --- how-to/auto-complete.md 2017-08-16 21:48:56 +0900 (635737e) +++ how-to/auto-complete.md 2017-08-16 21:56:33 +0900 (fd58fd1) @@ -31,11 +31,11 @@ Here is the sample index definition: ```sql CREATE INDEX pgroonga_terms_prefix_search ON terms USING pgroonga - (term pgroonga.text_term_search_ops_v2, - readings pgroonga.text_array_term_search_ops_v2); + (term pgroonga_text_term_search_ops_v2, + readings pgroonga_text_array_term_search_ops_v2); CREATE INDEX pgroonga_terms_full_text_search ON terms USING pgroonga - (term pgroonga.text_full_text_search_ops_v2) + (term) WITH (tokenizer = 'TokenBigramSplitSymbolAlphaDigit'); ``` Modified: ja/how-to/auto-complete.md (+3 -3) =================================================================== --- ja/how-to/auto-complete.md 2017-08-16 21:48:56 +0900 (b1c92bb) +++ ja/how-to/auto-complete.md 2017-08-16 21:56:33 +0900 (6e21960) @@ -31,11 +31,11 @@ CREATE TABLE terms ( ```sql CREATE INDEX pgroonga_terms_prefix_search ON terms USING pgroonga - (term pgroonga.text_term_search_ops_v2, - readings pgroonga.text_array_term_search_ops_v2); + (term pgroonga_text_term_search_ops_v2, + readings pgroonga_text_array_term_search_ops_v2); CREATE INDEX pgroonga_terms_full_text_search ON terms USING pgroonga - (term pgroonga.text_full_text_search_ops_v2) + (term) WITH (tokenizer = 'TokenBigramSplitSymbolAlphaDigit'); ``` Modified: ja/reference/grant-usage-on-schema-pgroonga.md (+2 -0) =================================================================== --- ja/reference/grant-usage-on-schema-pgroonga.md 2017-08-16 21:48:56 +0900 (810185b) +++ ja/reference/grant-usage-on-schema-pgroonga.md 2017-08-16 21:56:33 +0900 (6c923d1) @@ -4,6 +4,8 @@ title: GRANT USAGE ON SCHEME pgroonga # `GRANT USAGE ON SCHEME pgroonga` +`pgroonga`スキーマは2.0.0から非推奨です。新しく書くコードでは`pgroonga`スキーマではなくカレントスキーマに定義されている`pgroonga_*`関数・演算子・演算子クラスを使ってください。 + PGroongaは`pgroonga`スキーマに関数・演算子・演算子クラスなどを定義します。デフォルトではスーパーユーザーしか`pgroonga`スキーマの機能を使えません。スーパーユーザーはPGroongaを使いたいすべての一般ユーザーに`pgroonga`スキーマの`USAGE`権限を与えなければいけません。 このドキュメントは一般ユーザーに`pgroonga`スキーマの`USAGE`権限を与える方法を説明します。 Modified: ja/reference/index.md (+2 -0) =================================================================== --- ja/reference/index.md 2017-08-16 21:48:56 +0900 (653b70a) +++ ja/reference/index.md 2017-08-16 21:56:33 +0900 (9e2f5cd) @@ -8,6 +8,8 @@ title: リファレンスマニュアル ## `pgroonga`スキーマ +`pgroonga`スキーマは2.0.0から非推奨です。新しく書くコードでは`pgroonga`スキーマではなくカレントスキーマに定義されている`pgroonga_*`関数・演算子・演算子クラスを使ってください。 + PGroongaは`pgroonga`スキーマに関数・演算子・演算子クラスなどを定義します。デフォルトではスーパーユーザーしか`pgroonga`スキーマの機能を使えません。スーパーユーザーはPGroongaを使いたいすべての一般ユーザーに`pgroonga`スキーマの`USAGE`権限を与えなければいけません。 * [`GRANT USAGE ON SCHEMA pgroonga`](grant-usage-on-schema-pgroonga.html) Modified: reference/grant-usage-on-schema-pgroonga.md (+2 -0) =================================================================== --- reference/grant-usage-on-schema-pgroonga.md 2017-08-16 21:48:56 +0900 (0b55088) +++ reference/grant-usage-on-schema-pgroonga.md 2017-08-16 21:56:33 +0900 (d13ffa3) @@ -4,6 +4,8 @@ title: GRANT USAGE ON SCHEME pgroonga # `GRANT USAGE ON SCHEME pgroonga` +`pgroonga` schema is deprecated since 2.0.0. Use `pgroonga_*` functions, operators and operator classes in the current schema for newly written code. + PGroonga defines functions, operators, operator classes and so on into `pgroonga` schema. Only superuser can use features in `pgroonga` schema by default. Superuser needs to grant `USAGE` privilege on `pgroonga` schema to normal users who want to use PGroonga. This document describes how to grant `USAGE` privilege on `pgroonga` schema to a normal user. Modified: reference/index.md (+2 -0) =================================================================== --- reference/index.md 2017-08-16 21:48:56 +0900 (c252ae1) +++ reference/index.md 2017-08-16 21:56:33 +0900 (334df63) @@ -8,6 +8,8 @@ This document describes about all features. [Tutorial](../tutorial/) focuses on ## `pgroonga` schema +`pgroonga` schema is deprecated since 2.0.0. Use `pgroonga_*` functions, operators and operator classes in the current schema for newly written code. + PGroonga defines functions, operators, operator classes and so on into `pgroonga` schema. Only superuser can use features in `pgroonga` schema by default. Superuser needs to grant `USAGE` privilege on `pgroonga` schema to normal users who want to use PGroonga. * [`GRANT USAGE ON SCHEMA pgroonga`](grant-usage-on-schema-pgroonga.html) -------------- next part -------------- HTML����������������������������...Download