v.24.12Improvement
Support JSON Type in notEmpty Function
Support JSON type in the notEmpty function. #72741 (Pavel Kruglov).Why it matters
This feature allows users to use thenotEmpty function to check if JSON values are non-empty, enabling better handling and filtering of JSON data within queries.How to use it
Simply apply thenotEmpty function to columns or expressions of JSON type in your queries, for example: sql<br>SELECT * FROM table WHERE notEmpty(json_column)<br>