Intended to be used by unit tests only. Print a list of all aliases in in the current Pig Latin script. Output is written to System.out. @throws FrontendException
()
| 873 | * @throws FrontendException |
| 874 | */ |
| 875 | public void printAliases () throws FrontendException { |
| 876 | System.out.println("aliases: " + currDAG.getAliasOp().keySet()); |
| 877 | } |
| 878 | |
| 879 | /** |
| 880 | * Write the schema for an alias to System.out. |
nothing calls this directly
no test coverage detected