5
0
mirror of https://github.com/apache/sqoop.git synced 2025-05-03 21:12:38 +08:00

SQOOP-1437: 'Text' reserved word in compliation

(Nick White via Jarek Jarcec Cecho)
This commit is contained in:
Jarek Jarcec Cecho 2014-10-06 18:04:25 -07:00
parent e1d0468911
commit dcd5d843c2

View File

@ -116,6 +116,10 @@ public class ClassWriter {
JAVA_RESERVED_WORDS.add("void");
JAVA_RESERVED_WORDS.add("volatile");
JAVA_RESERVED_WORDS.add("while");
// not strictly reserved words, but collides with
// our imports
JAVA_RESERVED_WORDS.add("Text");
}
public static final String PROPERTY_CODEGEN_METHODS_MAXCOLS =