[Groonga-commit] droonga/droonga.org at 1cb0c6a [gh-pages] Add command reference for "column_rename" command

アーカイブの一覧に戻る

YUKI Hiroshi null+****@clear*****
Wed May 28 11:07:27 JST 2014


YUKI Hiroshi	2014-05-28 11:07:27 +0900 (Wed, 28 May 2014)

  New Revision: 1cb0c6ae280262632f1bd41265ddec8ddbc7f6f8
  https://github.com/droonga/droonga.org/commit/1cb0c6ae280262632f1bd41265ddec8ddbc7f6f8

  Message:
    Add command reference for "column_rename" command

  Added files:
    reference/1.0.3/commands/column-rename/index.md

  Added: reference/1.0.3/commands/column-rename/index.md (+74 -0) 100644
===================================================================
--- /dev/null
+++ reference/1.0.3/commands/column-rename/index.md    2014-05-28 11:07:27 +0900 (de5ec73)
@@ -0,0 +1,74 @@
+---
+title: column_rename
+layout: en
+---
+
+* TOC
+{:toc}
+
+## Abstract {#abstract}
+
+The `column_rename` command renames an existing column in a table.
+
+This is compatible to [the `column_rename` command of the Groonga](http://groonga.org/docs/reference/commands/column_rename.html).
+
+Style
+: Request-Response. One response message is always returned per one request.
+
+`type` of the request
+: `column_rename`
+
+`body` of the request
+: A hash of parameters.
+
+`type` of the response
+: `column_rename.result`
+
+## Parameter syntax {#syntax}
+
+    {
+      "table"    : "<Name of the table>",
+      "name"     : "<Current name of the column>",
+      "new_name" : "<New name of the column>"
+    }
+
+## Parameter details {#parameters}
+
+All parameters are required.
+
+They are compatible to [the parameters of the `column_rename` command of the Groonga](http://groonga.org/docs/reference/commands/column_rename.html#parameters). See the linked document for more details.
+
+## Responses {#response}
+
+This returns an array meaning the result of the operation, as the `body`.
+
+    [
+      [
+        <Groonga's status code>,
+        <Start time>,
+        <Elapsed time>
+      ],
+      <Column is successfully renamed or not>
+    ]
+
+This command always returns a response with `200` as its `statusCode`, because this is a Groonga compatible command and errors of this command must be handled in the way same to Groonga's one.
+
+Response body's details:
+
+Status code
+: An integer which means the operation's result. Possible values are:
+  
+   * `0` (`Droonga::GroongaHandler::Status::SUCCESS`) : Successfully processed.
+   * `-22` (`Droonga::GroongaHandler::Status::INVALID_ARGUMENT`) : There is any invalid argument.
+
+Start time
+: An UNIX time which the operation was started on.
+
+Elapsed time
+: A decimal of seconds meaning the elapsed time for the operation.
+
+Column is successfully renamed or not
+: A boolean value meaning the column was successfully renamed or not. Possible values are:
+  
+   * `true`:The column was successfully renamed.
+   * `false`:The column was not renamed.
-------------- next part --------------
HTML����������������������������...
ダウンロード 



More information about the Groonga-commit mailing list
アーカイブの一覧に戻る