Skip to content

Commit

Permalink
Merge branch 'main' of github.com:singlestore-labs/singlestore-python
Browse files Browse the repository at this point in the history
  • Loading branch information
kesmit13 committed Jan 9, 2024
2 parents 1a7138e + 07b972f commit cf0104a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion singlestoredb/mysql/protocol.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)


Expand Down

0 comments on commit cf0104a

Please sign in to comment.