1616// under the License.
1717
1818use clap:: Parser ;
19- use datafusion_common:: instant:: Instant ;
20- use datafusion_common:: utils:: get_available_parallelism;
21- use datafusion_common:: { exec_err, DataFusionError , Result } ;
22- use datafusion_common_runtime:: SpawnedTask ;
19+ use datafusion:: common:: instant:: Instant ;
20+ use datafusion:: common:: utils:: get_available_parallelism;
21+ use datafusion:: common:: { exec_err, DataFusionError , Result } ;
2322use datafusion_sqllogictest:: {
2423 df_value_validator, read_dir_recursive, setup_scratch_dir, value_normalizer,
2524 DataFusion , TestContext ,
@@ -40,6 +39,7 @@ use sqllogictest::{
4039use crate :: postgres_container:: {
4140 initialize_postgres_container, terminate_postgres_container,
4241} ;
42+ use datafusion:: common:: runtime:: SpawnedTask ;
4343use std:: ffi:: OsStr ;
4444use std:: path:: { Path , PathBuf } ;
4545
@@ -330,7 +330,7 @@ async fn run_test_file_with_postgres(
330330 _mp : MultiProgress ,
331331 _mp_style : ProgressStyle ,
332332) -> Result < ( ) > {
333- use datafusion_common :: plan_err;
333+ use datafusion :: common :: plan_err;
334334 plan_err ! ( "Can not run with postgres as postgres feature is not enabled" )
335335}
336336
@@ -446,7 +446,7 @@ async fn run_complete_file_with_postgres(
446446 _mp : MultiProgress ,
447447 _mp_style : ProgressStyle ,
448448) -> Result < ( ) > {
449- use datafusion_common :: plan_err;
449+ use datafusion :: common :: plan_err;
450450 plan_err ! ( "Can not run with postgres as postgres feature is not enabled" )
451451}
452452
0 commit comments