From 99073c7749533b991de8e121b2e128d2f6433e2c Mon Sep 17 00:00:00 2001 From: Lloyd-Pottiger Date: Tue, 6 May 2025 14:52:41 +0800 Subject: [PATCH] *: fix darwin build Signed-off-by: Lloyd-Pottiger --- dbms/src/Flash/Coprocessor/DAGStorageInterpreter.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dbms/src/Flash/Coprocessor/DAGStorageInterpreter.cpp b/dbms/src/Flash/Coprocessor/DAGStorageInterpreter.cpp index ae42cd0a944..50c19e1688c 100644 --- a/dbms/src/Flash/Coprocessor/DAGStorageInterpreter.cpp +++ b/dbms/src/Flash/Coprocessor/DAGStorageInterpreter.cpp @@ -1445,7 +1445,10 @@ std::unordered_map DAG { // Since we can not know which table's schema is newer, we need to sync all tables' schema. need_sync_table_ids.clear(); - need_sync_table_ids.append_range(table_scan.getPhysicalTableIDs()); + need_sync_table_ids.insert( + need_sync_table_ids.end(), + table_scan.getPhysicalTableIDs().begin(), + table_scan.getPhysicalTableIDs().end()); need_sync_table_ids.push_back(logical_table_id); table_storages.clear(); table_locks.clear();