-
Notifications
You must be signed in to change notification settings - Fork 750
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(functions): add map_insert function #15567
Conversation
However, there is such a description in Snowflake:
But in Databend, do we support dynamically setting config in the query? Alternatively, we can set the config when querying with the bendsql? |
We can register a new function with four arguments for |
085cead
to
f4ae992
Compare
But, I have discovered a problem now: CREATE TABLE map_insert_test(col_str Map(String, String Null) Not Null, col_int Map(String, Int Null) Null);
SELECT map_insert(col_int, 'a', 100)
FROM map_insert_test; For the NULL map, it is currently stuck and unable to run. However, I tried to modify the domain calculation, but it had no effect. I have no idea here 😣 |
Both val_domain and insert_value_domain may be nullable, and we need to deal with various cases, such as match (val_domain, insert_value_domain) {
(Domain::Nullable(NullableDomain {..}), Domain::Nullable(NullableDomain {..})) => ...,
(Domain::Nullable(NullableDomain {..}), _) => ...,
(_, Domain::Nullable(NullableDomain {..})) => ...,
(_, _) => ...,
} |
d3ad954
to
35c6a6e
Compare
Thanks for @hanxuanliang PR. And look forward to keeping an eye on databend in the future |
I hereby agree to the terms of the CLA available at: https://docs.databend.com/dev/policies/cla/
Summary
part of #15295
Tests
Type of change
This change is