()
| 913 | } |
| 914 | |
| 915 | @Override |
| 916 | protected void processPWD() throws IOException |
| 917 | { |
| 918 | filter.validate(PigCommandFilter.Command.PWD); |
| 919 | if(mExplain == null) { // process only if not in "explain" mode |
| 920 | |
| 921 | executeBatch(); |
| 922 | |
| 923 | System.out.println(mDfs.getActiveContainer().toString()); |
| 924 | } else { |
| 925 | log.warn("'pwd' statement is ignored while processing 'explain -script' or '-check'"); |
| 926 | } |
| 927 | } |
| 928 | |
| 929 | @Override |
| 930 | protected void processHistory(boolean withNumbers) { |
nothing calls this directly
no test coverage detected