Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set CrateDB version to 5.7.5 #84

Merged
merged 1 commit into from
Sep 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from SqlBaseParser.g4 by ANTLR 4.13.1
// Generated from SqlBaseParser.g4 by ANTLR 4.13.2
// jshint ignore: start
import antlr4 from 'antlr4';

Expand Down Expand Up @@ -482,6 +482,33 @@ export default class SqlBaseParserListener extends antlr4.tree.ParseTreeListener
}


// Enter a parse tree produced by SqlBaseParser#dropServer.
enterDropServer(ctx) {
}

// Exit a parse tree produced by SqlBaseParser#dropServer.
exitDropServer(ctx) {
}


// Enter a parse tree produced by SqlBaseParser#dropForeignTable.
enterDropForeignTable(ctx) {
}

// Exit a parse tree produced by SqlBaseParser#dropForeignTable.
exitDropForeignTable(ctx) {
}


// Enter a parse tree produced by SqlBaseParser#dropUserMapping.
enterDropUserMapping(ctx) {
}

// Exit a parse tree produced by SqlBaseParser#dropUserMapping.
exitDropUserMapping(ctx) {
}


// Enter a parse tree produced by SqlBaseParser#addColumn.
enterAddColumn(ctx) {
}
Expand Down Expand Up @@ -1850,6 +1877,15 @@ export default class SqlBaseParserListener extends antlr4.tree.ParseTreeListener
}


// Enter a parse tree produced by SqlBaseParser#createForeignTable.
enterCreateForeignTable(ctx) {
}

// Exit a parse tree produced by SqlBaseParser#createForeignTable.
exitCreateForeignTable(ctx) {
}


// Enter a parse tree produced by SqlBaseParser#createBlobTable.
enterCreateBlobTable(ctx) {
}
Expand Down Expand Up @@ -1895,6 +1931,15 @@ export default class SqlBaseParserListener extends antlr4.tree.ParseTreeListener
}


// Enter a parse tree produced by SqlBaseParser#createUserMapping.
enterCreateUserMapping(ctx) {
}

// Exit a parse tree produced by SqlBaseParser#createUserMapping.
exitCreateUserMapping(ctx) {
}


// Enter a parse tree produced by SqlBaseParser#createRole.
enterCreateRole(ctx) {
}
Expand Down Expand Up @@ -1931,6 +1976,42 @@ export default class SqlBaseParserListener extends antlr4.tree.ParseTreeListener
}


// Enter a parse tree produced by SqlBaseParser#createServer.
enterCreateServer(ctx) {
}

// Exit a parse tree produced by SqlBaseParser#createServer.
exitCreateServer(ctx) {
}


// Enter a parse tree produced by SqlBaseParser#mappedUser.
enterMappedUser(ctx) {
}

// Exit a parse tree produced by SqlBaseParser#mappedUser.
exitMappedUser(ctx) {
}


// Enter a parse tree produced by SqlBaseParser#kvOptions.
enterKvOptions(ctx) {
}

// Exit a parse tree produced by SqlBaseParser#kvOptions.
exitKvOptions(ctx) {
}


// Enter a parse tree produced by SqlBaseParser#kvOption.
enterKvOption(ctx) {
}

// Exit a parse tree produced by SqlBaseParser#kvOption.
exitKvOption(ctx) {
}


// Enter a parse tree produced by SqlBaseParser#functionArgument.
enterFunctionArgument(ctx) {
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from SqlBaseParser.g4 by ANTLR 4.13.1
// Generated from SqlBaseParser.g4 by ANTLR 4.13.2
// jshint ignore: start
import antlr4 from 'antlr4';

Expand Down
2 changes: 1 addition & 1 deletion cratedb_sqlparse_js/cratedb_sqlparse/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import {sqlparse} from "./parser.js";
export {sqlparse};
export const __cratedb_version__ = "5.7.2"
export const __cratedb_version__ = "5.7.5"
2 changes: 1 addition & 1 deletion cratedb_sqlparse_py/cratedb_sqlparse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__all__ = ["sqlparse", "ParsingException"]

__cratedb_version__ = "5.6.4"
__cratedb_version__ = "5.7.5"
Loading