feat: format hive grammar files name
This commit is contained in:
		@ -16,7 +16,8 @@
 | 
				
			|||||||
*/
 | 
					*/
 | 
				
			||||||
lexer grammar HiveSqlLexer;
 | 
					lexer grammar HiveSqlLexer;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
options { caseInsensitive = true; }
 | 
					// unsupported option caseInsensitive in antlr4@4.9
 | 
				
			||||||
 | 
					// options { caseInsensitive = true; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Keywords
 | 
					// Keywords
 | 
				
			||||||
KW_ABORT                               : 'ABORT';
 | 
					KW_ABORT                               : 'ABORT';
 | 
				
			||||||
 | 
				
			|||||||
@ -14,7 +14,7 @@
 | 
				
			|||||||
   See the License for the specific language governing permissions and
 | 
					   See the License for the specific language governing permissions and
 | 
				
			||||||
   limitations under the License.
 | 
					   limitations under the License.
 | 
				
			||||||
*/
 | 
					*/
 | 
				
			||||||
parser grammar HiveSql;
 | 
					parser grammar HiveSqlParser;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
options
 | 
					options
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
@ -3058,4 +3058,4 @@ alterMappingStatement
 | 
				
			|||||||
dropMappingStatement
 | 
					dropMappingStatement
 | 
				
			||||||
    : KW_DROP mappingType=(KW_USER | KW_GROUP | KW_APPLICATION) KW_MAPPING
 | 
					    : KW_DROP mappingType=(KW_USER | KW_GROUP | KW_APPLICATION) KW_MAPPING
 | 
				
			||||||
         name=StringLiteral KW_IN rpName=id_
 | 
					         name=StringLiteral KW_IN rpName=id_
 | 
				
			||||||
    ;
 | 
					    ;
 | 
				
			||||||
		Reference in New Issue
	
	Block a user