The table_list
command reports the list of all existing tables in the dataset.
This is compatible to the table_list
command of the Groonga.
(Document Root)/d/table_list
GET
Not supported.
type
of the requesttable_list
body
of the requestnull
or a blank hash.type
of the responsetable_list.result
This returns an array including list of tables as the response’s body
.
[
[
<Groonga's status code>,
<Start time>,
<Elapsed time>
],
<List of tables>
]
The structure of the returned array is compatible to the returned value of the Groonga’s table_list
command. See the linked document for more details.
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:
0
(Droonga::GroongaHandler::Status::SUCCESS
) : Successfully processed.-22
(Droonga::GroongaHandler::Status::INVALID_ARGUMENT
) : There is any invalid argument.