query filtering crashes due to null document fixed
query.exec([{"title": "hello"}, null], {"select_list": "title"}); // before: TypeError: list[i] is null // after: [{"title": "hello"}]
Showing
Please register or sign in to comment
query.exec([{"title": "hello"}, null], {"select_list": "title"}); // before: TypeError: list[i] is null // after: [{"title": "hello"}]