mirror of https://github.com/adamdruppe/arsd.git
return null for null instead of <null>, bringing it back to compatibility with pre 11.0 releases
This commit is contained in:
parent
d07483d544
commit
91ab8dbd79
|
|
@ -186,6 +186,8 @@ struct DatabaseDatum {
|
||||||
Converts the datum to a string in a format specified by the database.
|
Converts the datum to a string in a format specified by the database.
|
||||||
+/
|
+/
|
||||||
string toString() {
|
string toString() {
|
||||||
|
if(isNull())
|
||||||
|
return null;
|
||||||
return storage.toString();
|
return storage.toString();
|
||||||
}
|
}
|
||||||
/++
|
/++
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue