Skip to content

Commit 3ad1994

Browse files
committed
feat(flow-php/web): playground examples read from shared datasets
- ship orders.xlsx, orders.floe and partitioned CSVs - move every example off per-example input/ folders - add Floe reading and writing examples
1 parent 9563aa8 commit 3ad1994

50 files changed

Lines changed: 231 additions & 64 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
55.1 KB
Binary file not shown.
24.5 KB
Binary file not shown.

web/landing/content/examples/topics/partitioning/partition_pruning/input/color=blue/sku=A/data.csv renamed to web/landing/assets/wasm/data/partitioned/color=blue/sku=A/products.csv

File renamed without changes.

web/landing/content/examples/topics/partitioning/partition_pruning/input/color=green/sku=A/data.csv renamed to web/landing/assets/wasm/data/partitioned/color=green/sku=A/products.csv

File renamed without changes.

web/landing/content/examples/topics/partitioning/partition_pruning/input/color=red/sku=A/data.csv renamed to web/landing/assets/wasm/data/partitioned/color=red/sku=A/products.csv

File renamed without changes.

web/landing/content/examples/topics/partitioning/partition_pruning/input/color=red/sku=B/data.csv renamed to web/landing/assets/wasm/data/partitioned/color=red/sku=B/products.csv

File renamed without changes.

web/landing/content/examples/topics/data_frame/data_reading/csv/code.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
data_frame()
1111
->read(from_csv(
12-
__DIR__ . '/input/dataset.csv',
12+
__DIR__ . '/data/orders.csv',
1313
with_header: true,
1414
empty_to_null: true,
1515
separator: ',',

web/landing/content/examples/topics/data_frame/data_reading/csv/input/dataset.csv

Lines changed: 0 additions & 6 deletions
This file was deleted.

web/landing/content/examples/topics/data_frame/data_reading/excel/code.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
data_frame()
1111
->read(from_excel(
12-
__DIR__ . '/input/dataset.xlsx',
12+
__DIR__ . '/data/orders.xlsx',
1313
))
1414
->collect()
1515
->write(to_output(truncate: false))
Binary file not shown.

0 commit comments

Comments
 (0)