Netflix / PigPen

Map-Reduce for Clojure
Apache License 2.0
565 stars 55 forks source link

Verify that pig/script isn't consumed in other commands #67

Open mbossenbroek opened 10 years ago

mbossenbroek commented 10 years ago

It's possible today to do this:

(->> data
  (pig/map ...)
  (pig/store ...)
  (pig/script ...)
  (pig/map ...))

And have it generate a script that won't run. Add some validation to catch this.