Ejemplo n.º 1
0
        /// <summary>
        /// table_indexed_by_part : (INDEXED | INDEX) BY type_spec
        ///     ;
        /// </summary>
        /// <param name="context"></param>
        /// <returns></returns>
        public override object VisitTable_indexed_by_part([NotNull] PlSqlParser.Table_indexed_by_partContext context)
        {
            OTableIndexedByPartExpression result = new OTableIndexedByPartExpression()
            {
                IndexKind = context.INDEXED().Exist()
                    ? OTableIndexedByPartExpressionEnum.Indexed
                    : OTableIndexedByPartExpressionEnum.Index,
                By = (OTypeReference)VisitType_spec(context.type_spec()),
            };

            return(result);
        }
Ejemplo n.º 2
0
 public void VisitTableIndexedByPartExpression(OTableIndexedByPartExpression oTableIndexedByPartExpression)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 3
0
 public void VisitTableIndexedByPartExpression(OTableIndexedByPartExpression oTableIndexedByPartExpression)
 {
 }