liugddx commented on code in PR #27234: URL: https://github.com/apache/doris/pull/27234#discussion_r1426247891
########## regression-test/suites/load_p0/routine_load/test_routine_load.groovy: ########## @@ -1168,4 +1168,53 @@ suite("test_routine_load","p0") { j++ } } + + // partial + if (enabled != null && enabled.equalsIgnoreCase("true")) { + try { + + sql new File("""${context.file.parent}/ddl/uniq_tbl_partial_drop.sql""").text + sql new File("""${context.file.parent}/ddl/uniq_tbl_partial_create.sql""").text + sql new File("""${context.file.parent}/ddl/uniq_tbl_partial_init.sql""").text + + sql """ + CREATE ROUTINE LOAD job_uniq_tbl_partial ON routine_load_uniq_tbl_partial + COLUMNS(k00,k01,k02,k03,k04,k05,k06,k07,k08,k09,k10,k11,k12,k13,k14,k15,k16,k17,k18), Review Comment: > source In fact, There are as many fields in the table as there are in the file, I just want to provide a subset of the columns so that partial column updates can be done. I configured it like this, but it will be abnormal. How do I configure the update of some columns? -- 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