You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// When the cache manager creates a StatisticsCache by default,
691
688
// the contents will show up here
692
-
let sql = "SELECT split_part(path, '/', -1) as filename, file_size_bytes, num_rows, num_columns, table_size_bytes from statistics_cache() order by filename";
693
-
let df = ctx.sql(sql).await?;
694
-
let rbs = df.collect().await?;
695
-
assert_snapshot!(batches_to_string(&rbs),@r"
696
-
++
697
-
++
698
-
");
699
-
700
-
Ok(())
701
-
}
702
-
703
-
// Can be removed when https://github.com/apache/datafusion/issues/19217 is resolved
let sql = "SELECT split_part(path, '/', -1) as filename, file_size_bytes, num_rows, num_columns, table_size_bytes from statistics_cache() order by filename";
0 commit comments