-
Notifications
You must be signed in to change notification settings - Fork 3.4k
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
[feature](cast) Support cast complex type to json #36548
[feature](cast) Support cast complex type to json #36548
Conversation
…m/amorynan/doris into support-cast-complex-type-to-json
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
run buildall |
@@ -834,6 +834,10 @@ public static boolean isImplicitlyCastable(Type t1, Type t2, boolean strict, boo | |||
} | |||
|
|||
public static boolean canCastTo(Type sourceType, Type targetType) { | |||
// In BE Code , we make any data type can cast to jsonb | |||
if (targetType.isJsonbType()) { | |||
return true; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
agg_state, variant could cast to json? what we will get if cast ipv4 /ipv6 to json.
@@ -834,6 +834,10 @@ public static boolean isImplicitlyCastable(Type t1, Type t2, boolean strict, boo | |||
} | |||
|
|||
public static boolean canCastTo(Type sourceType, Type targetType) { | |||
// In BE Code , we make any data type can cast to jsonb | |||
if (targetType.isJsonbType()) { | |||
return true; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if support all type, u should add all type cast to json test case
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add limits
if (complexType.isMapType()) { | ||
return ((MapType) complexType).getKeyType().isStringType(); | ||
} else if (complexType.isArrayType()) { | ||
return checkMapKeyIsStringLikeForJson(((ArrayType) complexType).getItemType()); | ||
} else if (complexType.isStructType()) { | ||
for (StructField f : ((StructType) complexType).getFields()) { | ||
return checkMapKeyIsStringLikeForJson(f.getType()); | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should check in nereids, not here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done!
TPC-H: Total hot run time: 39887 ms
|
TPC-DS: Total hot run time: 172075 ms
|
run buildall |
run buildall |
PR approved by at least one committer and no changes requested. |
PR approved by anyone and no changes requested. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
TPC-H: Total hot run time: 39579 ms
|
TPC-DS: Total hot run time: 173087 ms
|
ClickBench: Total hot run time: 30.49 s
|
support cast complex type to json which we can use array_agg/map_agg result into json_object
## Proposed changes backport: #36548 Issue Number: close #xxx <!--Describe your changes.-->
Proposed changes
in this pr we do
Issue Number: close #xxx