blob: 72a85469e78690e454f7dfd3f5854ecc945c129a [file] [log] [blame]
<#-- Licensed to the Apache Software Foundation (ASF) under one or more contributor
license agreements. See the NOTICE file distributed with this work for additional
information regarding copyright ownership. The ASF licenses this file to
You under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of
the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
by applicable law or agreed to in writing, software distributed under the
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
OF ANY KIND, either express or implied. See the License for the specific
language governing permissions and limitations under the License. -->
private void ColumnDef(List<ColumnDefinition> list) :
{
SqlParserPos pos;
SqlIdentifier name;
SqlDataTypeSpec type;
ColumnConstraint constraint = null;
SqlMonotonicity monotonicity = SqlMonotonicity.NOT_MONOTONIC;
}
{
name = SimpleIdentifier() { pos = getPos(); }
type = DataType()
[
<PRIMARY> <KEY>
[ <ASC> { monotonicity = SqlMonotonicity.INCREASING; }
| <DESC> { monotonicity = SqlMonotonicity.DECREASING; }
]
{ constraint = new ColumnConstraint.PrimaryKey(monotonicity, getPos()); }
]
{
list.add(new ColumnDefinition(name, type, constraint, pos));
}
}
SqlNodeList ColumnDefinitionList() :
{
SqlParserPos pos;
List<ColumnDefinition> list = Lists.newArrayList();
}
{
<LPAREN> { pos = getPos(); }
ColumnDef(list)
( <COMMA> ColumnDef(list) )*
<RPAREN> {
return new SqlNodeList(list, pos.plus(getPos()));
}
}
/**
* CREATE EXTERNAL TABLE ( IF NOT EXISTS )?
* ( database_name '.' )? table_name ( '(' column_def ( ',' column_def )* ')'
* ( STORED AS INPUTFORMAT input_format_classname OUTPUTFORMAT output_format_classname )?
* LOCATION location_uri
* ( TBLPROPERTIES tbl_properties )?
* ( AS select_stmt )
*/
SqlNode SqlCreateTable() :
{
SqlParserPos pos;
SqlIdentifier tblName;
SqlNodeList fieldList;
SqlNode location;
SqlNode input_format_class_name = null, output_format_class_name = null;
SqlNode tbl_properties = null;
SqlNode select = null;
}
{
<CREATE> { pos = getPos(); }
<EXTERNAL> <TABLE>
tblName = CompoundIdentifier()
fieldList = ColumnDefinitionList()
[
<STORED> <AS>
<INPUTFORMAT> input_format_class_name = StringLiteral()
<OUTPUTFORMAT> output_format_class_name = StringLiteral()
]
<LOCATION>
location = StringLiteral()
[ <TBLPROPERTIES> tbl_properties = StringLiteral() ]
[ <AS> select = OrderedQueryOrExpr(ExprContext.ACCEPT_QUERY) ] {
return new SqlCreateTable(pos, tblName, fieldList,
input_format_class_name, output_format_class_name, location,
tbl_properties, select);
}
}