From 4e92d239c0824cf8278d480fc3baf5bb59ce3b85 Mon Sep 17 00:00:00 2001 From: Adam Gutglick Date: Wed, 19 Feb 2025 15:30:26 +0000 Subject: [PATCH 1/2] . --- vortex-datafusion/src/persistent/format.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vortex-datafusion/src/persistent/format.rs b/vortex-datafusion/src/persistent/format.rs index ece967903fb..b96b5a351fb 100644 --- a/vortex-datafusion/src/persistent/format.rs +++ b/vortex-datafusion/src/persistent/format.rs @@ -296,6 +296,10 @@ impl FileFormat for VortexFormat { return not_impl_err!("Hive style partitioning isn't implemented yet for Vortex"); } + if !file_scan_config.output_ordering.is_empty() { + return not_impl_err!("Vortex doesn't respect output ordering"); + } + let exec = VortexExec::try_new( file_scan_config, metrics, From 2f17b541983b0f347996f499f4adac22b60a4b81 Mon Sep 17 00:00:00 2001 From: Adam Gutglick Date: Wed, 19 Feb 2025 15:33:05 +0000 Subject: [PATCH 2/2] . --- vortex-datafusion/src/persistent/format.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vortex-datafusion/src/persistent/format.rs b/vortex-datafusion/src/persistent/format.rs index b96b5a351fb..8fa3c6957bb 100644 --- a/vortex-datafusion/src/persistent/format.rs +++ b/vortex-datafusion/src/persistent/format.rs @@ -297,7 +297,7 @@ impl FileFormat for VortexFormat { } if !file_scan_config.output_ordering.is_empty() { - return not_impl_err!("Vortex doesn't respect output ordering"); + return not_impl_err!("Vortex doesn't support output ordering"); } let exec = VortexExec::try_new(