apache / inlong

Apache InLong - a one-stop, full-scenario integration framework for massive data
https://inlong.apache.org/
Apache License 2.0
1.4k stars 530 forks source link

[Feature][SDK] Transform support JSON_STRING() function #11222

Closed emptyOVO closed 1 month ago

emptyOVO commented 1 month ago

Description

This function returns a JSON string containing the serialized value. If the value is NULL, the function returns NULL.

Use case

-- NULL
JSON_STRING(NULL)

-- '1'
JSON_STRING(1)
-- 'true'
JSON_STRING(TRUE)
-- '"Hello, World!"'
JSON_STRING('Hello, World!')

Are you willing to submit PR?

Code of Conduct

emptyOVO commented 1 month ago

this issue function implement as same as #11217 JSON_QUOTE() function so will be finished in #11217