diff --git a/alternator/executor.cc b/alternator/executor.cc index 40b59bb1bf..4eb9f1af88 100644 --- a/alternator/executor.cc +++ b/alternator/executor.cc @@ -147,7 +147,7 @@ future executor::describe_table(sstring content) { // maybe for TableId or TableArn use schema.id().to_sstring().c_str(); // Of course, the whole schema is missing! Json::Value response(Json::objectValue); - response["TableDescription"] = std::move(table_description); + response["Table"] = std::move(table_description); elogger.trace("returning {}", response.toStyledString()); return make_ready_future(make_jsonable(std::move(response))); }