arrow_pg/lib.rs
1//! Arrow data encoding and type mapping for Postgres(pgwire).
2
3// #[cfg(all(feature = "arrow", feature = "datafusion"))]
4// compile_error!("Feature arrow and datafusion cannot be enabled at same time. Use no-default-features when activating datafusion");
5
6pub mod datatypes;
7pub mod encoder;
8mod error;
9pub mod list_encoder;
10pub mod row_encoder;
11pub mod struct_encoder;