final public StatementNode dropSchemaStatement() throws ParseException, StandardException {
String schemaName;
jj_consume_token(SCHEMA);
schemaName = identifier(Limits.MAX_IDENTIFIER_LENGTH, true);
jj_consume_token(RESTRICT);
StatementNode stmt = (StatementNode) nodeFactory.getNode(
C_NodeTypes.DROP_SCHEMA_NODE,
schemaName,
new Integer(StatementType.DROP_RESTRICT),
getContextManager());