helper function for debugging @param schema a PIG schema @return a readable string representation of the schema
(Schema schema)
| 54 | * @return a readable string representation of the schema |
| 55 | */ |
| 56 | private static String stringify(Schema schema) { |
| 57 | StringBuffer buffer = new StringBuffer(); |
| 58 | stringify(schema, buffer); |
| 59 | return buffer.toString(); |
| 60 | } |
| 61 | |
| 62 | /** |
| 63 | * |