()
| 1840 | } |
| 1841 | |
| 1842 | private String buildQuery() { |
| 1843 | StringBuilder accuQuery = new StringBuilder(); |
| 1844 | for( String line : scriptCache ) { |
| 1845 | accuQuery.append( line + "\n" ); |
| 1846 | } |
| 1847 | |
| 1848 | return accuQuery.toString(); |
| 1849 | } |
| 1850 | |
| 1851 | private void compile() throws IOException { |
| 1852 | lp.validate(pigContext, scope, false); |
no test coverage detected