nimuyuhan commented on a change in pull request #6507: URL: https://github.com/apache/incubator-doris/pull/6507#discussion_r702601931
########## File path: fe/fe-core/src/main/java/org/apache/doris/planner/MysqlScanNode.java ########## @@ -131,7 +131,11 @@ private void createMySQLFilters(Analyzer analyzer) { } ArrayList<Expr> mysqlConjuncts = Expr.cloneList(conjuncts, sMap); for (Expr p : mysqlConjuncts) { - filters.add(p.toMySql()); + if (Config.enable_external_database_function_push_down) { + FunctionMappingHelper.mappingEngineFunction(p, "mysql"); Review comment: I fix these problems at d0e0b70e28897bfa67e9c7b007df6d2f03f3b7dd -- 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: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org