1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
pub(crate) mod cache;
pub(crate) mod drop_duplicates;
pub(crate) mod explode;
pub(crate) mod filter;
pub(crate) mod groupby;
pub(crate) mod groupby_dynamic;
pub(crate) mod groupby_rolling;
pub(crate) mod join;
pub(crate) mod melt;
pub(crate) mod projection;
pub(crate) mod scan;
pub(crate) mod slice;
pub(crate) mod sort;
pub(crate) mod stack;
pub(crate) mod udf;
pub(crate) mod union;
use super::*;
use crate::logical_plan::FETCH_ROWS;
use polars_core::POOL;
use rayon::prelude::*;
use std::path::PathBuf;
const POLARS_VERBOSE: &str = "POLARS_VERBOSE";
fn set_n_rows(n_rows: Option<usize>) -> Option<usize> {
let fetch_rows = FETCH_ROWS.with(|fetch_rows| fetch_rows.get());
match fetch_rows {
None => n_rows,
Some(n) => Some(n),
}
}
fn execute_projection_cached_window_fns(
df: &DataFrame,
exprs: &[Arc<dyn PhysicalExpr>],
state: &ExecutionState,
) -> Result<Vec<Series>> {
#[allow(clippy::type_complexity)]
let mut windows: Vec<(String, Vec<(u32, bool, Arc<dyn PhysicalExpr>)>)> = vec![];
let mut other = Vec::with_capacity(exprs.len());
let mut index = 0u32;
exprs.iter().for_each(|phys| {
index += 1;
let e = phys.as_expression();
let mut is_window = false;
for e in e.into_iter() {
if let Expr::Window {
partition_by,
options,
..
} = e
{
let groupby = format!("{:?}", partition_by.as_slice());
if let Some(tpl) = windows.iter_mut().find(|tpl| tpl.0 == groupby) {
tpl.1.push((index, options.explode, phys.clone()))
} else {
windows.push((groupby, vec![(index, options.explode, phys.clone())]))
}
is_window = true;
break;
}
}
if !is_window {
other.push((index, phys))
}
});
let mut selected_columns = POOL.install(|| {
other
.par_iter()
.map(|(idx, expr)| expr.evaluate(df, state).map(|s| (*idx, s)))
.collect::<Result<Vec<_>>>()
})?;
for mut partition in windows {
let mut state = state.clone();
state.clear_expr_cache();
if partition.1.len() == 1 {
state.cache_window = false;
} else {
state.cache_window = true;
}
partition.1.sort_unstable_by_key(|(_idx, explode, _)| {
!explode
});
for (index, _, e) in partition.1 {
state.cache_window = e
.as_expression()
.into_iter()
.filter(|e| matches!(e, Expr::Window { .. }))
.count()
== 1;
let s = e.evaluate(df, &state)?;
selected_columns.push((index, s));
}
}
selected_columns.sort_unstable_by_key(|tpl| tpl.0);
let selected_columns = selected_columns.into_iter().map(|tpl| tpl.1).collect();
Ok(selected_columns)
}
pub(crate) fn evaluate_physical_expressions(
df: &DataFrame,
exprs: &[Arc<dyn PhysicalExpr>],
state: &ExecutionState,
has_windows: bool,
) -> Result<DataFrame> {
let zero_length = df.height() == 0;
let selected_columns = if has_windows {
execute_projection_cached_window_fns(df, exprs, state)?
} else {
POOL.install(|| {
exprs
.par_iter()
.map(|expr| expr.evaluate(df, state))
.collect::<Result<_>>()
})?
};
state.clear_schema_cache();
check_expand_literals(selected_columns, zero_length)
}
fn check_expand_literals(
mut selected_columns: Vec<Series>,
zero_length: bool,
) -> Result<DataFrame> {
let first_len = selected_columns[0].len();
let mut df_height = 0;
let mut all_equal_len = true;
{
let mut names = PlHashSet::with_capacity(selected_columns.len());
for s in &selected_columns {
let len = s.len();
df_height = std::cmp::max(df_height, len);
if len != first_len {
all_equal_len = false;
}
let name = s.name();
if !names.insert(name) {
return Err(PolarsError::Duplicate(
format!("Column with name: '{}' has more than one occurrences", name).into(),
));
}
}
}
if !all_equal_len {
selected_columns = selected_columns
.into_iter()
.map(|series| {
if series.len() == 1 && df_height > 1 {
series.expand_at_index(0, df_height)
} else {
series
}
})
.collect()
}
let df = DataFrame::new_no_checks(selected_columns);
let df = if zero_length {
let min = df.get_columns().iter().map(|s| s.len()).min();
if min.is_some() {
df.head(min)
} else {
df
}
} else {
df
};
Ok(df)
}