File tree Expand file tree Collapse file tree 5 files changed +10
-3
lines changed
datafusion/sqllogictest/src Expand file tree Collapse file tree 5 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -21,4 +21,5 @@ mod normalize;
2121mod runner;
2222
2323pub use error:: * ;
24+ pub use normalize:: * ;
2425pub use runner:: * ;
Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ use std::sync::OnceLock;
2828use super :: super :: conversion:: * ;
2929use super :: error:: { DFSqlLogicTestError , Result } ;
3030
31- /// Converts `batches` to a result as expected by sqllogicteset .
32- pub ( crate ) fn convert_batches ( batches : Vec < RecordBatch > ) -> Result < Vec < Vec < String > > > {
31+ /// Converts `batches` to a result as expected by sqllogictest .
32+ pub fn convert_batches ( batches : Vec < RecordBatch > ) -> Result < Vec < Vec < String > > > {
3333 if batches. is_empty ( ) {
3434 Ok ( vec ! [ ] )
3535 } else {
Original file line number Diff line number Diff line change @@ -20,7 +20,10 @@ mod conversion;
2020mod datafusion_engine;
2121mod output;
2222
23+ pub use datafusion_engine:: convert_batches;
2324pub use datafusion_engine:: DataFusion ;
25+ pub use output:: DFColumnType ;
26+ pub use output:: DFOutput ;
2427
2528#[ cfg( feature = "postgres" ) ]
2629mod postgres_engine;
Original file line number Diff line number Diff line change @@ -54,4 +54,4 @@ impl ColumnType for DFColumnType {
5454 }
5555}
5656
57- pub ( crate ) type DFOutput = DBOutput < DFColumnType > ;
57+ pub type DFOutput = DBOutput < DFColumnType > ;
Original file line number Diff line number Diff line change 1919
2020mod engines;
2121
22+ pub use engines:: convert_batches;
23+ pub use engines:: DFColumnType ;
24+ pub use engines:: DFOutput ;
2225pub use engines:: DataFusion ;
2326
2427#[ cfg( feature = "postgres" ) ]
You can’t perform that action at this time.
0 commit comments