We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d6f3f6 commit 3c09737Copy full SHA for 3c09737
src/loaders/parquet/parse_params.rs
@@ -10,8 +10,7 @@ use regex::Regex;
10
/// A vector of Polars with the selected columns.
11
pub fn parse_columns_from_params_to_str(params: &HashMap<String, String>) -> Option<Vec<String>> {
12
// Parse columns from params
13
- println!("Params: {:?}", params);
14
-
+
15
// Initialize a set of columns to return
16
let mut select_cols = if let Some(cols) = params.get("columns") {
17
cols.split(",").map(|x| x.to_string()).collect::<Vec<_>>()
0 commit comments