From b1c2b1ff98c369773d0e2dcdb42aabb1ea6b01ab Mon Sep 17 00:00:00 2001 From: Joe Isaacs Date: Thu, 19 Dec 2024 11:11:45 +0000 Subject: [PATCH] Rename recordbatch to record_batch (#1727) --- vortex-array/src/arrow/mod.rs | 2 +- vortex-array/src/arrow/{recordbatch.rs => record_batch.rs} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename vortex-array/src/arrow/{recordbatch.rs => record_batch.rs} (100%) diff --git a/vortex-array/src/arrow/mod.rs b/vortex-array/src/arrow/mod.rs index 61bfce225e..ce47ad7684 100644 --- a/vortex-array/src/arrow/mod.rs +++ b/vortex-array/src/arrow/mod.rs @@ -7,7 +7,7 @@ pub use crate::arrow::dtype::{infer_data_type, infer_schema}; mod array; mod datum; mod dtype; -mod recordbatch; +mod record_batch; pub mod wrappers; pub use datum::*; diff --git a/vortex-array/src/arrow/recordbatch.rs b/vortex-array/src/arrow/record_batch.rs similarity index 100% rename from vortex-array/src/arrow/recordbatch.rs rename to vortex-array/src/arrow/record_batch.rs