From 4450d01eeebd33b16b0769e7d99909853a67bc78 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 20 Jul 2026 16:00:59 +0000 Subject: [PATCH 1/2] Initial plan From bf4680109f2ca778951095c449c91d3adaf618ee Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 20 Jul 2026 16:02:43 +0000 Subject: [PATCH 2/2] Fix: add missing COPY for third_party/parquet_format in Dockerfile.all --- .docker/Dockerfile.all | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.docker/Dockerfile.all b/.docker/Dockerfile.all index d92c6ee..a1bdb09 100644 --- a/.docker/Dockerfile.all +++ b/.docker/Dockerfile.all @@ -183,13 +183,14 @@ WORKDIR /src/tpch-cpp # Third-party vendored sources. # Layer ordering: large/infrequently-changed trees first for better cache reuse. -COPY third_party/lance third_party/lance -COPY third_party/lance-ffi third_party/lance-ffi -COPY third_party/dbgen third_party/dbgen -COPY third_party/tpch third_party/tpch -COPY third_party/dsdgen third_party/dsdgen -COPY third_party/tpcds third_party/tpcds -COPY third_party/xsimd third_party/xsimd +COPY third_party/lance third_party/lance +COPY third_party/lance-ffi third_party/lance-ffi +COPY third_party/dbgen third_party/dbgen +COPY third_party/tpch third_party/tpch +COPY third_party/dsdgen third_party/dsdgen +COPY third_party/tpcds third_party/tpcds +COPY third_party/xsimd third_party/xsimd +COPY third_party/parquet_format third_party/parquet_format # Project source (changes more frequently — near the end) # GIT_SHA is passed by CI so that every push busts the layer cache here,