mysql-load导入时设置的enclose、escape不生效

使用mysql-load导入时设置的enclose、escape不生效

load data local
infile ‘/data/sss/bin/test.sql’
into table test.order_202310
columns terminated by ‘,’
lines terminated by ‘\n’
PROPERTIES (“trim_double_quotes”=“true”,“enclose”=“"”,“escape”=“\”)
;