File tree Expand file tree Collapse file tree 5 files changed +4
-40
lines changed Expand file tree Collapse file tree 5 files changed +4
-40
lines changed Original file line number Diff line number Diff line change 4
4
from . import line_item
5
5
from . import orders
6
6
7
- tool = "pandas"
8
- fn = IO_FUNCS [tool ]
9
- print (q12 .query (fn (line_item ), fn (orders )))
10
-
11
7
tool = "pandas[pyarrow]"
12
8
fn = IO_FUNCS [tool ]
13
9
print (q12 .query (fn (line_item ), fn (orders )))
14
10
15
- tool = "polars[eager]"
16
- fn = IO_FUNCS [tool ]
17
- print (q12 .query (fn (line_item ), fn (orders )))
18
-
19
11
tool = "polars[lazy]"
20
12
fn = IO_FUNCS [tool ]
21
13
print (q12 .query (fn (line_item ), fn (orders )).collect ())
Original file line number Diff line number Diff line change 4
4
from . import customer
5
5
from . import orders
6
6
7
- tool = "pandas"
8
- fn = IO_FUNCS [tool ]
9
- print (q13 .query (fn (customer ), fn (orders )))
10
-
11
7
tool = "pandas[pyarrow]"
12
8
fn = IO_FUNCS [tool ]
13
9
print (q13 .query (fn (customer ), fn (orders )))
14
10
15
- tool = "polars[eager]"
16
- fn = IO_FUNCS [tool ]
17
- print (q13 .query (fn (customer ), fn (orders )))
18
-
19
11
tool = "polars[lazy]"
20
12
fn = IO_FUNCS [tool ]
21
13
print (q13 .query (fn (customer ), fn (orders )).collect ())
Original file line number Diff line number Diff line change 4
4
from . import line_item
5
5
from . import part
6
6
7
- tool = "pandas"
8
- fn = IO_FUNCS [tool ]
9
- print (q14 .query (fn (line_item ), fn (part )))
10
-
11
7
tool = "pandas[pyarrow]"
12
8
fn = IO_FUNCS [tool ]
13
9
print (q14 .query (fn (line_item ), fn (part )))
14
10
15
- tool = "polars[eager]"
16
- fn = IO_FUNCS [tool ]
17
- print (q14 .query (fn (line_item ), fn (part )))
18
-
19
11
tool = "polars[lazy]"
20
12
fn = IO_FUNCS [tool ]
21
13
print (q14 .query (fn (line_item ), fn (part )).collect ())
Original file line number Diff line number Diff line change 5
5
from . import partsupp
6
6
from . import supplier
7
7
8
- tool = "pandas"
9
- fn = IO_FUNCS [tool ]
10
- print (q16 .query (fn (part ), fn (partsupp ), fn (supplier )))
11
-
12
8
tool = "pandas[pyarrow]"
13
9
fn = IO_FUNCS [tool ]
14
10
print (q16 .query (fn (part ), fn (partsupp ), fn (supplier )))
15
11
16
- tool = "polars[eager]"
17
- fn = IO_FUNCS [tool ]
18
- print (q16 .query (fn (part ), fn (partsupp ), fn (supplier )))
19
-
20
12
tool = "polars[lazy]"
21
13
fn = IO_FUNCS [tool ]
22
14
print (q16 .query (fn (part ), fn (partsupp ), fn (supplier )).collect ())
Original file line number Diff line number Diff line change 4
4
from . import customer
5
5
from . import orders
6
6
7
- fn = IO_FUNCS ["pandas" ]
7
+ tool = "pandas[pyarrow]"
8
+ fn = IO_FUNCS [tool ]
8
9
print (q22 .query (fn (customer ), fn (orders )))
9
10
10
- fn = IO_FUNCS ["pandas[pyarrow]" ]
11
- print (q22 .query (fn (customer ), fn (orders )))
12
-
13
- fn = IO_FUNCS ["polars[eager]" ]
14
- print (q22 .query (fn (customer ), fn (orders )))
15
-
16
- fn = IO_FUNCS ["polars[lazy]" ]
11
+ tool = "polars[lazy]"
12
+ fn = IO_FUNCS [tool ]
17
13
print (q22 .query (fn (customer ), fn (orders )).collect ())
You can’t perform that action at this time.
0 commit comments