thrift: validate_column_name: fix exception format string

It's printing uint32_t rather than char*.

Refs #4140

Signed-off-by: Benny Halevy <bhalevy@scylladb.com>
Message-Id: <20190124104002.32381-1-bhalevy@scylladb.com>
This commit is contained in:
Benny Halevy
2019-01-24 12:40:02 +02:00
committed by Avi Kivity
parent b58b82c9a2
commit fbebd0bb1d

View File

@@ -97,7 +97,7 @@ void validate_cf_def(const CfDef& cf_def) {
void validate_column_name(const std::string& name) {
auto max_name_length = static_cast<uint32_t>(utils::fb_utilities::MAX_UNSIGNED_SHORT);
if (name.size() > max_name_length) {
throw make_exception<InvalidRequestException>("column name length must not be greater than %s", max_name_length);
throw make_exception<InvalidRequestException>("column name length must not be greater than %u", max_name_length);
}
if (name.empty()) {
throw make_exception<InvalidRequestException>("column name must not be empty");