return null for null instead of <null>, bringing it back to compatibility with pre 11.0 releases

This commit is contained in:
Adam D. Ruppe 2024-01-26 09:51:03 -05:00
parent d07483d544
commit 91ab8dbd79
1 changed files with 2 additions and 0 deletions

View File

@ -186,6 +186,8 @@ struct DatabaseDatum {
Converts the datum to a string in a format specified by the database.
+/
string toString() {
if(isNull())
return null;
return storage.toString();
}
/++