diff --git a/singlestoredb/mysql/protocol.py b/singlestoredb/mysql/protocol.py index bef4a4d0..5a7e9648 100644 --- a/singlestoredb/mysql/protocol.py +++ b/singlestoredb/mysql/protocol.py @@ -295,13 +295,14 @@ def get_column_length(self): return self.length def __str__(self): - return '%s %r.%r.%r, type=%s, flags=%x' % ( + return '%s %r.%r.%r, type=%s, flags=%x, charsetnr=%s' % ( self.__class__, self.db, self.table_name, self.name, self.type_code, self.flags, + self.charsetnr, )