Changeset: af6250ee8c4d for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/af6250ee8c4d Modified Files: sql/scripts/40_json.sql Branch: Dec2023 Log Message:
fixed json.isvalid(json) implementation to handle NULL's diffs (12 lines): diff --git a/sql/scripts/40_json.sql b/sql/scripts/40_json.sql --- a/sql/scripts/40_json.sql +++ b/sql/scripts/40_json.sql @@ -50,7 +50,7 @@ returns bool external name json.isvalid; GRANT EXECUTE ON FUNCTION json.isvalid(string) TO PUBLIC; create function json.isvalid(js json) -returns bool begin return true; end; +returns bool begin return case when js is NULL then NULL else true end; end; GRANT EXECUTE ON FUNCTION json.isvalid(json) TO PUBLIC; create function json.isobject(js json) _______________________________________________ checkin-list mailing list -- checkin-list@monetdb.org To unsubscribe send an email to checkin-list-le...@monetdb.org