Skip to content

Commit

Permalink
Fixing examples.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobin Baker committed May 5, 2015
1 parent 54840bf commit ab24b3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/standalone.myl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Emp = load("./examples/emp.csv", id:int, dept_id:int, name:string, salary:int);
Dept = load("./examples/dept.csv", id:int, name:string, manager:int);
Emp = load("./examples/emp.csv", csv(schema(id:int, dept_id:int, name:string, salary:int)));
Dept = load("./examples/dept.csv", csv(schema(id:int, name:string, manager:int)));

out = [from Emp, Dept
where Emp.dept_id == Dept.id AND Emp.salary > 5000
Expand Down

0 comments on commit ab24b3f

Please sign in to comment.