Skip to content

Commit 1d890e5

Browse files
HaydenOrzwewoor
authored andcommitted
feat: format hive grammar files name
1 parent f413a29 commit 1d890e5

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

src/grammar/hive/HiveSqlLexer.g4

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
*/
1717
lexer grammar HiveSqlLexer;
1818

19-
options { caseInsensitive = true; }
19+
// unsupported option caseInsensitive in antlr4@4.9
20+
// options { caseInsensitive = true; }
2021

2122
// Keywords
2223
KW_ABORT : 'ABORT';
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
See the License for the specific language governing permissions and
1515
limitations under the License.
1616
*/
17-
parser grammar HiveSql;
17+
parser grammar HiveSqlParser;
1818

1919
options
2020
{
@@ -3058,4 +3058,4 @@ alterMappingStatement
30583058
dropMappingStatement
30593059
: KW_DROP mappingType=(KW_USER | KW_GROUP | KW_APPLICATION) KW_MAPPING
30603060
name=StringLiteral KW_IN rpName=id_
3061-
;
3061+
;

0 commit comments

Comments
 (0)