/// <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); }
public void VisitTableIndexedByPartExpression(OTableIndexedByPartExpression oTableIndexedByPartExpression) { throw new NotImplementedException(); }
public void VisitTableIndexedByPartExpression(OTableIndexedByPartExpression oTableIndexedByPartExpression) { }