Skip to content

Commit

Permalink
CS fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
norberttech committed Feb 10, 2024
1 parent e819aa3 commit 5d6742b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
1 change: 0 additions & 1 deletion examples/topics/partitioning/partition_pruning/code.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,3 @@
// | 7 | blue | PRODUCT01 |
// +----+-------+-----------+
// 5 rows

6 changes: 1 addition & 5 deletions examples/topics/partitioning/partitioning/code.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@
use function Flow\ETL\DSL\data_frame;
use function Flow\ETL\DSL\from_array;
use function Flow\ETL\DSL\ref;
use function Flow\ETL\DSL\to_output;
use Flow\ETL\Join\Expression;
use Flow\ETL\Join\Join;

require __DIR__ . '/../../../autoload.php';

Expand All @@ -22,7 +19,7 @@
['id' => 5, 'color' => 'green', 'sku' => 'PRODUCT02'],
['id' => 6, 'color' => 'green', 'sku' => 'PRODUCT03'],
['id' => 7, 'color' => 'blue', 'sku' => 'PRODUCT01'],
['id' => 8, 'color' => 'blue', 'sku' => 'PRODUCT02']
['id' => 8, 'color' => 'blue', 'sku' => 'PRODUCT02'],
]
))
->partitionBy(ref('color'), ref('sku'))
Expand Down Expand Up @@ -51,4 +48,3 @@
// └── 65c7e9bc44209401416287.csv
//
// 12 directories, 8 files

0 comments on commit 5d6742b

Please sign in to comment.