add primary key support

This commit is contained in:
HSunboy
2019-11-15 11:01:55 +08:00
parent 2962271262
commit 02b00e17e0
10 changed files with 12234 additions and 11905 deletions

File diff suppressed because it is too large Load Diff

View File

@ -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

View File

@ -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);