Skip to content

Commit

Permalink
ci: Try with interpolated process id
Browse files Browse the repository at this point in the history
  • Loading branch information
jheer committed Feb 19, 2024
1 parent 61d61e0 commit 4b74c5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/data/nyc-taxi.parquet.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ COPY (SELECT
(HOUR(datetime) + MINUTE(datetime)/60) AS time,
ST_X(pick)::INTEGER AS px, ST_Y(pick)::INTEGER AS py,
ST_X(drop)::INTEGER AS dx, ST_Y(drop)::INTEGER AS dy
FROM rides) TO '/proc/self/fd/1' WITH (FORMAT PARQUET);
FROM rides) TO '/proc/${$$}/fd/1' WITH (FORMAT PARQUET);
EOF
exit 0

0 comments on commit 4b74c5d

Please sign in to comment.