Kouhei Sutou
null+****@clear*****
Wed Aug 31 18:44:54 JST 2016
Kouhei Sutou 2016-08-31 18:44:54 +0900 (Wed, 31 Aug 2016) New Revision: 87a82f4e8f0f8dea735662325d794a4dd2298c5a https://github.com/groonga/groonga/commit/87a82f4e8f0f8dea735662325d794a4dd2298c5a Message: doc logical_table_remove: update Modified files: doc/locale/ja/LC_MESSAGES/reference.po doc/source/example/reference/commands/logical_table_remove/remove_broken_tables_index_column_exist.log doc/source/example/reference/commands/logical_table_remove/remove_broken_tables_remove.log doc/source/example/reference/commands/logical_table_remove/remove_with_reference_default.log doc/source/reference/commands/logical_table_remove.rst Modified: doc/locale/ja/LC_MESSAGES/reference.po (+10 -13) =================================================================== --- doc/locale/ja/LC_MESSAGES/reference.po 2016-08-31 18:37:10 +0900 (75fb8dd) +++ doc/locale/ja/LC_MESSAGES/reference.po 2016-08-31 18:44:54 +0900 (0de2dff) @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: 1.2.1\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2016-08-31 16:51+0900\n" +"PO-Revision-Date: 2016-08-31 18:44+0900\n" "Last-Translator: Masafumi Yokoyama <yokoyama �� clear-code.com>\n" "Language-Team: Japanese\n" "Language: ja\n" @@ -7330,16 +7330,14 @@ msgstr "" "ターを指定することで可能な限り削除することができます。" msgid "" -"If you specify ``--force yes``, they are removed as much as possible. In " -"some cases, some tables and/or columns may not be removed. For example, " -"broken index column can't be removed." +"If you specify ``--force yes``, they are removed as much as possible. You " +"can also use ``--dependent yes`` with ``--force yes``." msgstr "" -"``--force yes`` を指定すると、対象テーブルを可能な限り削除します。いくつかの" -"ケースでは削除できないテーブル・カラムがあります。たとえば、インデックスカラ" -"ムが壊れている場合はそのインデックスカラムを削除できません。" +"``--force yes`` を指定すると、対象テーブルを可能な限り削除します。 ``--force " +"yes`` と一緒に ``--dependent yes`` も指定することができます。" -msgid "Here is a sample schema to show this case:" -msgstr "以下はこのケースを示すサンプルスキーマです。" +msgid "Here is a sample schema to show how ``--force yes`` behavior:" +msgstr "以下は ``--force yes`` の挙動を示すサンプルスキーマです。" msgid "" "You can't remove ``Logs_20160320`` when ``Timestamps." @@ -7357,11 +7355,10 @@ msgstr "" "ラムを削除できます。" msgid "" -"``Logs_20160320`` and its columns are removed but ``Timestamps." -"logs_20160320_timestamp`` isn't removed:" +"``Logs_20160320``, its columns and ``Timestamps.logs_20160320_timestamp`` " +"are removed:" msgstr "" -"``Logs_20160320`` とそのテーブルのカラムは削除されますが ``Timestamps." -"logs_20160320_timestamp`` は削除されません。" +"``Logs_20160320`` とそのテーブルのカラムと ``Timestamps.logs_20160320_timestamp``が削除されます。" msgid "" "``--force yes`` parameter is a dangerous parameter. Normally, you don't need " Modified: doc/source/example/reference/commands/logical_table_remove/remove_broken_tables_index_column_exist.log (+1 -1) =================================================================== --- doc/source/example/reference/commands/logical_table_remove/remove_broken_tables_index_column_exist.log 2016-08-31 18:37:10 +0900 (06e6954) +++ doc/source/example/reference/commands/logical_table_remove/remove_broken_tables_index_column_exist.log 2016-08-31 18:44:54 +0900 (961b0a1) @@ -5,4 +5,4 @@ Execution example:: object_exist Logs_20160320.timestamp # [[0, 1337566253.89858, 0.000355720520019531], false] object_exist Timestamps.logs_20160320_timestamp - # [[0, 1337566253.89858, 0.000355720520019531], true] + # [[0, 1337566253.89858, 0.000355720520019531], false] Modified: doc/source/example/reference/commands/logical_table_remove/remove_broken_tables_remove.log (+1 -1) =================================================================== --- doc/source/example/reference/commands/logical_table_remove/remove_broken_tables_remove.log 2016-08-31 18:37:10 +0900 (4b37d31) +++ doc/source/example/reference/commands/logical_table_remove/remove_broken_tables_remove.log 2016-08-31 18:44:54 +0900 (a42a218) @@ -13,7 +13,7 @@ Execution example:: # [ # "Groonga::Sharding::LogicalTableRemoveCommand.remove_table", # "/home/kou/work/c/groonga.clean/plugins/sharding/logical_table_remove.rb", - # 139 + # 156 # ] # ] # ] Modified: doc/source/example/reference/commands/logical_table_remove/remove_with_reference_default.log (+1 -1) =================================================================== --- doc/source/example/reference/commands/logical_table_remove/remove_with_reference_default.log 2016-08-31 18:37:10 +0900 (9e7b64d) +++ doc/source/example/reference/commands/logical_table_remove/remove_with_reference_default.log 2016-08-31 18:44:54 +0900 (b094f70) @@ -13,7 +13,7 @@ Execution example:: # [ # "Groonga::Sharding::LogicalTableRemoveCommand.remove_table", # "/home/kou/work/c/groonga.clean/plugins/sharding/logical_table_remove.rb", - # 139 + # 156 # ] # ] # ] Modified: doc/source/reference/commands/logical_table_remove.rst (+4 -5) =================================================================== --- doc/source/reference/commands/logical_table_remove.rst 2016-08-31 18:37:10 +0900 (9276a65) +++ doc/source/reference/commands/logical_table_remove.rst 2016-08-31 18:44:54 +0900 (8980f86) @@ -350,10 +350,9 @@ If the target tables are broken, you can't remove them. But you can remove them as much as possible by using ``force`` parameter. If you specify ``--force yes``, they are removed as much as -possible. In some cases, some tables and/or columns may not be -removed. For example, broken index column can't be removed. +possible. You can also use ``--dependent yes`` with ``--force yes``. -Here is a sample schema to show this case: +Here is a sample schema to show how ``--force yes`` behavior: .. groonga-command .. include:: ../../example/reference/commands/logical_table_remove/remove_broken_tables_create.log @@ -391,8 +390,8 @@ broken: .. --shard_key timestamp \ .. --force yes -``Logs_20160320`` and its columns are removed but -``Timestamps.logs_20160320_timestamp`` isn't removed: +``Logs_20160320``, its columns and +``Timestamps.logs_20160320_timestamp`` are removed: .. groonga-command .. include:: ../../example/reference/commands/logical_table_remove/remove_broken_tables_index_column_exist.log -------------- next part -------------- HTML����������������������������...Download