Skip to content
This repository has been archived by the owner on Sep 17, 2020. It is now read-only.

Commit

Permalink
DPH-90; missing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
lestermartin committed Dec 2, 2015
1 parent a855d9f commit f33b0e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion labs/Lab6.5/Solution/median.pig
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ stocks = LOAD 'stocks.csv' USING PigStorage(',') AS (
symbol:chararray,
closingdate:chararray,
openprice:double,
highprice:double
highprice:double,
lowprice:double);

stocks_filter = FILTER stocks BY highprice is not null;
Expand Down
2 changes: 1 addition & 1 deletion labs/Lab6.5/Solution/quantile.pig
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ stocks = LOAD 'stocks.csv' USING PigStorage(',') AS (
symbol:chararray,
closingdate:chararray,
openprice:double,
highprice:double
highprice:double,
lowprice:double);

stocks_filter = FILTER stocks BY highprice is not null;
Expand Down

0 comments on commit f33b0e0

Please sign in to comment.