Skip to content

Commit

Permalink
Fix ANTLR Rules
Browse files Browse the repository at this point in the history
  • Loading branch information
AMagistroni committed Sep 21, 2021
1 parent 102870a commit c9be18c
Show file tree
Hide file tree
Showing 6 changed files with 21,748 additions and 21,578 deletions.
11 changes: 11 additions & 0 deletions SqlSchemaCompare.Core/TSql/ITSqlParserListener.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3054,6 +3054,17 @@ public interface ITSqlParserListener : IParseTreeListener {
/// <param name="context">The parse tree.</param>
void ExitAlter_index([NotNull] TSqlParser.Alter_indexContext context);

/// <summary>
/// Enter a parse tree produced by <see cref="TSqlParser.rebuild_partition"/>.
/// </summary>
/// <param name="context">The parse tree.</param>
void EnterRebuild_partition([NotNull] TSqlParser.Rebuild_partitionContext context);
/// <summary>
/// Exit a parse tree produced by <see cref="TSqlParser.rebuild_partition"/>.
/// </summary>
/// <param name="context">The parse tree.</param>
void ExitRebuild_partition([NotNull] TSqlParser.Rebuild_partitionContext context);

/// <summary>
/// Enter a parse tree produced by <see cref="TSqlParser.create_columnstore_index"/>.
/// </summary>
Expand Down
Loading

0 comments on commit c9be18c

Please sign in to comment.