-
Notifications
You must be signed in to change notification settings - Fork 304
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/candidate-9.4.x'
Signed-off-by: Gavin Halliday <[email protected]>
- Loading branch information
Showing
15 changed files
with
350 additions
and
147 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
IMPORT PARQUET; | ||
|
||
EXPORT Layout := RECORD | ||
STRING VendorID; | ||
STRING tpep_pickup_datetime; | ||
STRING tpep_dropoff_datetime; | ||
STRING passenger_count; | ||
STRING trip_distance; | ||
STRING RatecodeID; | ||
STRING store_and_fwd_flag; | ||
STRING PULocationID; | ||
STRING DOLocationID; | ||
STRING payment_type; | ||
STRING fare_amount; | ||
STRING extra; | ||
STRING mta_tax; | ||
STRING tip_amount; | ||
STRING tolls_amount; | ||
STRING improvement_surcharge; | ||
STRING total_amount; | ||
END; | ||
|
||
tripData := '/datadrive/dev/test_data/yellow_tripdata_2017-01.parquet'; | ||
read_in := ParquetIO.Read(Layout, tripData); | ||
COUNT(read_in); | ||
OUTPUT(CHOOSEN(read_in, 100)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.