Skip to content

Commit

Permalink
Merge pull request #375 from arvanus/master
Browse files Browse the repository at this point in the history
Fix Bug when I need to see the property of not a char field
  • Loading branch information
arvanus authored Mar 21, 2024
2 parents 88e7d86 + f96cb15 commit 1b506f7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/metadata/database.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -427,6 +427,8 @@ wxArrayString Database::getCharacterSet()
wxArrayString Database::getCollations(const wxString& charset)
{
CharacterSetPtr characterSet = characterSetsM->findByName(charset);
if (!characterSet)
return wxArrayString();
characterSet->ensureChildrenLoaded();

return characterSet->getCollations();
Expand Down

0 comments on commit 1b506f7

Please sign in to comment.