add primary key support
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@ -1775,6 +1775,15 @@ sqlListener.prototype.exitDtColType = function(ctx) {
|
||||
};
|
||||
|
||||
|
||||
// Enter a parse tree produced by sqlParser#dtColIdentifier.
|
||||
sqlListener.prototype.enterDtColIdentifier = function(ctx) {
|
||||
};
|
||||
|
||||
// Exit a parse tree produced by sqlParser#dtColIdentifier.
|
||||
sqlListener.prototype.exitDtColIdentifier = function(ctx) {
|
||||
};
|
||||
|
||||
|
||||
// Enter a parse tree produced by sqlParser#complexColTypeList.
|
||||
sqlListener.prototype.enterComplexColTypeList = function(ctx) {
|
||||
};
|
||||
|
File diff suppressed because one or more lines are too long
@ -1188,6 +1188,12 @@ sqlVisitor.prototype.visitDtColType = function(ctx) {
|
||||
};
|
||||
|
||||
|
||||
// Visit a parse tree produced by sqlParser#dtColIdentifier.
|
||||
sqlVisitor.prototype.visitDtColIdentifier = function(ctx) {
|
||||
return this.visitChildren(ctx);
|
||||
};
|
||||
|
||||
|
||||
// Visit a parse tree produced by sqlParser#complexColTypeList.
|
||||
sqlVisitor.prototype.visitComplexColTypeList = function(ctx) {
|
||||
return this.visitChildren(ctx);
|
||||
|
Reference in New Issue
Block a user