airborne12 commented on code in PR #56718:
URL: https://github.com/apache/doris/pull/56718#discussion_r2425105402


##########
fe/fe-core/src/main/java/org/apache/doris/analysis/SearchPredicate.java:
##########
@@ -146,7 +146,29 @@ private TSearchParam buildThriftParam() {
         for (int i = 0; i < qsPlan.fieldBindings.size(); i++) {
             SearchDslParser.QsFieldBinding binding = 
qsPlan.fieldBindings.get(i);
             TSearchFieldBinding thriftBinding = new TSearchFieldBinding();
-            thriftBinding.setFieldName(binding.fieldName);
+
+            String fieldPath = binding.fieldName;
+            thriftBinding.setFieldName(fieldPath);
+
+            // Check if this is a variant subcolumn (contains dot)
+            if (fieldPath.contains(".")) {

Review Comment:
   Yes, but we should not support that?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to