File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed
uncoder-core/app/translator/core Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -344,11 +344,7 @@ def get_field_tokens_from_func_args( # noqa: PLR0912
344344 result .extend (self .get_field_tokens_from_func_args (args = arg .by_clauses ))
345345 result .extend (self .get_field_tokens_from_func_args (args = [arg .filter_ ]))
346346 elif isinstance (arg , (JoinFunction , UnionFunction )):
347- result .extend (self .get_field_tokens_from_func_args (args = arg .tokenized_query_container .tokens ))
348- result .extend (
349- self .get_field_tokens_from_func_args (args = arg .tokenized_query_container .functions .functions )
350- )
351- result .extend (self .get_field_tokens_from_func_args (args = arg .condition ))
347+ continue
352348 elif isinstance (arg , Function ):
353349 result .extend (self .get_field_tokens_from_func_args (args = arg .args ))
354350 elif isinstance (arg , SortArg ) and isinstance (arg .field , Field ):
You can’t perform that action at this time.
0 commit comments