mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-28 20:27:03 +00:00
Printing a column_definition::name() in an error message is wrong, because it is "bytes" and printed as hexadecimal ASCII codes :-( Some error messages in cql3/operation.cc incorrectly used name() and should be changed to name_as_text(), as was correctly done in a few other error messages in the same file. This patch also fixes a few places in the test/cql approval tests which "enshrined" the wrong behavior - printing things like 666c697374696e74 in error messages - and now needs to be fixed for the right behavior. Fixes #13657 Signed-off-by: Nadav Har'El <nyh@scylladb.com>