1 2 3 4 5 6 7 8 9 10 11 12 13 14
// SPDX-License-Identifier: Apache-2.0 // SPDX-FileCopyrightText: Copyright The Lance Authors use datafusion::prelude::SessionContext; #[cfg(feature = "geo")] pub mod bbox; pub fn register_functions(ctx: &SessionContext) { #[cfg(feature = "geo")] geodatafusion::register(ctx); #[cfg(not(feature = "geo"))] let _ = ctx; }