From 77fc8d96a281298e9b23a9f009935530953ce753 Mon Sep 17 00:00:00 2001 From: Jacob Quinn Date: Thu, 1 Apr 2021 17:30:02 -0600 Subject: [PATCH] Small fix that's affecting JuliaDB tests from passing --- src/chunks.jl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/chunks.jl b/src/chunks.jl index 0471de28e..ba07d62da 100644 --- a/src/chunks.jl +++ b/src/chunks.jl @@ -140,7 +140,8 @@ function savechunk(data, dir, f) return position(io) end fr = FileRef(f, sz) - Chunk{typeof(data), typeof(fr), P}(typeof(data), domain(data), fr, OSProc(), true) + proc = OSProc() + Chunk{typeof(data), typeof(fr), typeof(proc)}(typeof(data), domain(data), fr, proc, true) end