Skip to content

Commit

Permalink
Fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
dveeden committed Apr 30, 2024
1 parent 0730d3b commit 59639c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/executor/infoschema_reader.go
Original file line number Diff line number Diff line change
Expand Up @@ -1529,7 +1529,7 @@ func (e *memtableRetriever) setDataFromCollations() {
isDefault = "Yes"
}
rows = append(rows,
types.MakeDatums(collation.Name, collation.CharsetName, collation.ID, isDefault, "Yes", 1),
types.MakeDatums(collation.Name, collation.CharsetName, int(collation.ID), isDefault, "Yes", 1),
)
}
e.rows = rows
Expand Down
2 changes: 1 addition & 1 deletion pkg/executor/show.go
Original file line number Diff line number Diff line change
Expand Up @@ -1621,7 +1621,7 @@ func (e *ShowExec) fetchShowCollation() error {
e.appendRow([]any{
v.Name,
v.CharsetName,
v.ID,
int(v.ID),
isDefault,
"Yes",
1,
Expand Down

0 comments on commit 59639c5

Please sign in to comment.