liaoxin01 commented on code in PR #2214:
URL: https://github.com/apache/doris-website/pull/2214#discussion_r2004622188


##########
i18n/zh-CN/docusaurus-plugin-content-docs/current/data-operate/import/load-data-convert.md:
##########
@@ -606,7 +606,23 @@ mysql> select * from example_table;
 
 比如源数据中存储了多张表的数据(或者多张表的数据写入了同一个 Kafka 
消息队列)。数据中每行有一列表名来标识该行数据属于哪个表。用户可以通过前置过滤条件来筛选对应的表数据进行导入。
 
-### 示例
+前置过滤有以下限制:
+- 过滤列限制。
+
+前置过滤只能对列表中的独立简单列进行过滤,无法对带有表达式的列进行过滤。如:在列映射为(a, tmp, b = tmp + 1)时,b 列无法作为过滤条件。
+
+- 数据处理限制
+
+过滤发生在数据转换之前,使用原始数据值进行比较,不会进行数据转换。如:对于 `\N` 这样的数据,会直接用 `\N` 进行比较,而不会转换为 null 
后再比较

Review Comment:
   ```suggestion
   过滤发生在数据转换之前,使用原始数据值进行比较,不会进行数据转换。如:对于 `\N` 这样的数据,会直接用 `\N` 字符串进行比较,而不会转换为 
NULL 后再比较
   ```



-- 
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

Reply via email to