@dbml/core 3.5.1 → 3.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +0 -0
- package/README.md +0 -0
- package/lib/export/DbmlExporter.js +0 -0
- package/lib/export/JsonExporter.js +0 -0
- package/lib/export/ModelExporter.js +0 -0
- package/lib/export/MysqlExporter.js +0 -0
- package/lib/export/OracleExporter.js +0 -0
- package/lib/export/PostgresExporter.js +0 -0
- package/lib/export/README.md +0 -0
- package/lib/export/SqlServerExporter.js +0 -0
- package/lib/export/index.js +0 -0
- package/lib/export/utils.js +0 -0
- package/lib/import/index.js +0 -0
- package/lib/index.js +0 -0
- package/lib/model_structure/config.js +0 -0
- package/lib/model_structure/database.js +0 -0
- package/lib/model_structure/dbState.js +0 -0
- package/lib/model_structure/element.js +0 -0
- package/lib/model_structure/endpoint.js +0 -0
- package/lib/model_structure/enum.js +0 -0
- package/lib/model_structure/enumValue.js +0 -0
- package/lib/model_structure/field.js +0 -0
- package/lib/model_structure/indexColumn.js +0 -0
- package/lib/model_structure/indexes.js +0 -0
- package/lib/model_structure/ref.js +0 -0
- package/lib/model_structure/schema.js +0 -0
- package/lib/model_structure/stickyNote.js +0 -0
- package/lib/model_structure/table.js +0 -0
- package/lib/model_structure/tableGroup.js +0 -0
- package/lib/model_structure/utils.js +0 -0
- package/lib/parse/ANTLR/ASTGeneration/AST.js +0 -0
- package/lib/parse/ANTLR/ASTGeneration/ParserErrorListener.js +0 -0
- package/lib/parse/ANTLR/ASTGeneration/SyntaxError.js +0 -0
- package/lib/parse/ANTLR/ASTGeneration/constants.js +0 -0
- package/lib/parse/ANTLR/ASTGeneration/helpers.js +14 -0
- package/lib/parse/ANTLR/ASTGeneration/index.js +16 -0
- package/lib/parse/ANTLR/ASTGeneration/mysql/MySQLASTGen.js +0 -0
- package/lib/parse/ANTLR/ASTGeneration/postgres/PostgreSQLLexerBase.js +0 -0
- package/lib/parse/ANTLR/ASTGeneration/postgres/PostgreSQLParserBase.js +0 -0
- package/lib/parse/ANTLR/ASTGeneration/postgres/PostgresASTGen.js +0 -0
- package/lib/parse/ANTLR/ASTGeneration/snowflake/SnowflakeASTGen.js +750 -0
- package/lib/parse/ANTLR/README.md +0 -0
- package/lib/parse/ANTLR/parsers/mysql/MySqlLexer.g4 +0 -0
- package/lib/parse/ANTLR/parsers/mysql/MySqlLexer.interp +0 -0
- package/lib/parse/ANTLR/parsers/mysql/MySqlLexer.js +0 -0
- package/lib/parse/ANTLR/parsers/mysql/MySqlLexer.tokens +0 -0
- package/lib/parse/ANTLR/parsers/mysql/MySqlParser.g4 +0 -0
- package/lib/parse/ANTLR/parsers/mysql/MySqlParser.interp +0 -0
- package/lib/parse/ANTLR/parsers/mysql/MySqlParser.js +0 -0
- package/lib/parse/ANTLR/parsers/mysql/MySqlParser.tokens +0 -0
- package/lib/parse/ANTLR/parsers/mysql/MySqlParserVisitor.js +0 -0
- package/lib/parse/ANTLR/parsers/postgresql/PostgreSQLLexer.g4 +0 -0
- package/lib/parse/ANTLR/parsers/postgresql/PostgreSQLLexer.interp +0 -0
- package/lib/parse/ANTLR/parsers/postgresql/PostgreSQLLexer.js +0 -0
- package/lib/parse/ANTLR/parsers/postgresql/PostgreSQLLexer.tokens +0 -0
- package/lib/parse/ANTLR/parsers/postgresql/PostgreSQLParser.g4 +0 -0
- package/lib/parse/ANTLR/parsers/postgresql/PostgreSQLParser.interp +0 -0
- package/lib/parse/ANTLR/parsers/postgresql/PostgreSQLParser.js +0 -0
- package/lib/parse/ANTLR/parsers/postgresql/PostgreSQLParser.tokens +0 -0
- package/lib/parse/ANTLR/parsers/postgresql/PostgreSQLParserVisitor.js +0 -0
- package/lib/parse/ANTLR/parsers/postgresql/README.md +0 -0
- package/lib/parse/ANTLR/parsers/snowflake/SnowflakeLexer.g4 +1231 -0
- package/lib/parse/ANTLR/parsers/snowflake/SnowflakeLexer.interp +2733 -0
- package/lib/parse/ANTLR/parsers/snowflake/SnowflakeLexer.js +951 -0
- package/lib/parse/ANTLR/parsers/snowflake/SnowflakeLexer.tokens +1782 -0
- package/lib/parse/ANTLR/parsers/snowflake/SnowflakeParser.g4 +4368 -0
- package/lib/parse/ANTLR/parsers/snowflake/SnowflakeParser.interp +2420 -0
- package/lib/parse/ANTLR/parsers/snowflake/SnowflakeParser.js +3 -0
- package/lib/parse/ANTLR/parsers/snowflake/SnowflakeParser.tokens +1782 -0
- package/lib/parse/ANTLR/parsers/snowflake/SnowflakeParserVisitor.js +4255 -0
- package/lib/parse/Parser.js +8 -0
- package/lib/parse/buildParser.js +0 -0
- package/lib/parse/dbml/parser.pegjs +0 -0
- package/lib/parse/dbmlParser.js +0 -0
- package/lib/parse/error.js +0 -0
- package/lib/parse/mssql/base_parsers.js +0 -0
- package/lib/parse/mssql/column_definition/actions.js +0 -0
- package/lib/parse/mssql/column_definition/index.js +0 -0
- package/lib/parse/mssql/constraint_definition/actions.js +0 -0
- package/lib/parse/mssql/constraint_definition/index.js +0 -0
- package/lib/parse/mssql/expression.js +0 -0
- package/lib/parse/mssql/fk_definition/actions.js +0 -0
- package/lib/parse/mssql/fk_definition/index.js +0 -0
- package/lib/parse/mssql/index.js +0 -0
- package/lib/parse/mssql/index_definition/actions.js +0 -0
- package/lib/parse/mssql/index_definition/index.js +0 -0
- package/lib/parse/mssql/keyword_parsers.js +0 -0
- package/lib/parse/mssql/keyword_utils.js +0 -0
- package/lib/parse/mssql/statements/actions.js +0 -0
- package/lib/parse/mssql/statements/index.js +0 -0
- package/lib/parse/mssql/statements/statement_types/alter_table/actions.js +0 -0
- package/lib/parse/mssql/statements/statement_types/alter_table/add/actions.js +0 -0
- package/lib/parse/mssql/statements/statement_types/alter_table/add/index.js +0 -0
- package/lib/parse/mssql/statements/statement_types/alter_table/index.js +0 -0
- package/lib/parse/mssql/statements/statement_types/comments/actions.js +0 -0
- package/lib/parse/mssql/statements/statement_types/comments/index.js +0 -0
- package/lib/parse/mssql/statements/statement_types/create_index/actions.js +0 -0
- package/lib/parse/mssql/statements/statement_types/create_index/index.js +0 -0
- package/lib/parse/mssql/statements/statement_types/create_table/actions.js +0 -0
- package/lib/parse/mssql/statements/statement_types/create_table/index.js +0 -0
- package/lib/parse/mssql/statements/statement_types/index.js +0 -0
- package/lib/parse/mssql/utils.js +0 -0
- package/lib/parse/mssql/whitespaces.js +0 -0
- package/lib/parse/mssqlParser.js +0 -0
- package/lib/parse/mysql/parser.pegjs +0 -0
- package/lib/parse/mysqlParser.js +0 -0
- package/lib/parse/postgresParser.js +0 -0
- package/lib/parse/postgresql/Base_rules.pegjs +0 -0
- package/lib/parse/postgresql/Commands/Alter_table/Alter_table.pegjs +0 -0
- package/lib/parse/postgresql/Commands/Commands.pegjs +0 -0
- package/lib/parse/postgresql/Commands/Comment.pegjs +0 -0
- package/lib/parse/postgresql/Commands/Create_index.pegjs +0 -0
- package/lib/parse/postgresql/Commands/Create_table/Create_table.pegjs +0 -0
- package/lib/parse/postgresql/Commands/Create_table/Create_table_normal.pegjs +0 -0
- package/lib/parse/postgresql/Commands/Create_table/Create_table_of.pegjs +0 -0
- package/lib/parse/postgresql/Commands/Create_table/Create_table_partition_of.pegjs +0 -0
- package/lib/parse/postgresql/Commands/Create_type/Create_type.pegjs +0 -0
- package/lib/parse/postgresql/Commands/Create_type/Create_type_enum.pegjs +0 -0
- package/lib/parse/postgresql/Commands/Create_type/Create_type_range.pegjs +0 -0
- package/lib/parse/postgresql/Commands/Ignore_syntax.pegjs +0 -0
- package/lib/parse/postgresql/Expression.pegjs +0 -0
- package/lib/parse/postgresql/InitializerUtils.pegjs +0 -0
- package/lib/parse/postgresql/Keywords.pegjs +0 -0
- package/lib/parse/postgresql/get_parser.js +0 -0
- package/lib/parse/postgresql/parser.pegjs +0 -0
- package/lib/parse/schemarb/parser.pegjs +0 -0
- package/lib/parse/schemarbParser.js +0 -0
- package/lib/utils/version.js +0 -0
- package/package.json +3 -3
- package/types/export/ModelExporter.d.ts +0 -0
- package/types/export/index.d.ts +0 -0
- package/types/import/index.d.ts +0 -0
- package/types/index.d.ts +0 -0
- package/types/model_structure/database.d.ts +0 -0
- package/types/model_structure/dbState.d.ts +0 -0
- package/types/model_structure/element.d.ts +0 -0
- package/types/model_structure/endpoint.d.ts +0 -0
- package/types/model_structure/enum.d.ts +0 -0
- package/types/model_structure/enumValue.d.ts +0 -0
- package/types/model_structure/field.d.ts +0 -0
- package/types/model_structure/indexColumn.d.ts +0 -0
- package/types/model_structure/indexes.d.ts +0 -0
- package/types/model_structure/ref.d.ts +0 -0
- package/types/model_structure/schema.d.ts +0 -0
- package/types/model_structure/stickyNote.d.ts +0 -0
- package/types/model_structure/table.d.ts +0 -0
- package/types/model_structure/tableGroup.d.ts +0 -0
- package/types/parse/Parser.d.ts +0 -0
- package/types/parse/error.d.ts +1 -0
|
@@ -0,0 +1,4255 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
exports["default"] = void 0;
|
|
8
|
+
var _antlr = _interopRequireDefault(require("antlr4"));
|
|
9
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
10
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
11
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
12
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
13
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
|
14
|
+
function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
|
15
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
16
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
17
|
+
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
18
|
+
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
19
|
+
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
20
|
+
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
21
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } // Generated from C:/Users/rikim/Desktop/Holistics/dbx/dbml/packages/dbml-core/src/parse/ANTLR/parsers/snowflake/SnowflakeParser.g4 by ANTLR 4.13.1
|
|
22
|
+
// jshint ignore: start
|
|
23
|
+
// This class defines a complete generic visitor for a parse tree produced by SnowflakeParser.
|
|
24
|
+
var SnowflakeParserVisitor = /*#__PURE__*/function (_antlr4$tree$ParseTre) {
|
|
25
|
+
_inherits(SnowflakeParserVisitor, _antlr4$tree$ParseTre);
|
|
26
|
+
var _super = _createSuper(SnowflakeParserVisitor);
|
|
27
|
+
function SnowflakeParserVisitor() {
|
|
28
|
+
_classCallCheck(this, SnowflakeParserVisitor);
|
|
29
|
+
return _super.apply(this, arguments);
|
|
30
|
+
}
|
|
31
|
+
_createClass(SnowflakeParserVisitor, [{
|
|
32
|
+
key: "visitSnowflake_file",
|
|
33
|
+
value:
|
|
34
|
+
// Visit a parse tree produced by SnowflakeParser#snowflake_file.
|
|
35
|
+
function visitSnowflake_file(ctx) {
|
|
36
|
+
return this.visitChildren(ctx);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
// Visit a parse tree produced by SnowflakeParser#batch.
|
|
40
|
+
}, {
|
|
41
|
+
key: "visitBatch",
|
|
42
|
+
value: function visitBatch(ctx) {
|
|
43
|
+
return this.visitChildren(ctx);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
// Visit a parse tree produced by SnowflakeParser#sql_command.
|
|
47
|
+
}, {
|
|
48
|
+
key: "visitSql_command",
|
|
49
|
+
value: function visitSql_command(ctx) {
|
|
50
|
+
return this.visitChildren(ctx);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
// Visit a parse tree produced by SnowflakeParser#ddl_command.
|
|
54
|
+
}, {
|
|
55
|
+
key: "visitDdl_command",
|
|
56
|
+
value: function visitDdl_command(ctx) {
|
|
57
|
+
return this.visitChildren(ctx);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
// Visit a parse tree produced by SnowflakeParser#dml_command.
|
|
61
|
+
}, {
|
|
62
|
+
key: "visitDml_command",
|
|
63
|
+
value: function visitDml_command(ctx) {
|
|
64
|
+
return this.visitChildren(ctx);
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
// Visit a parse tree produced by SnowflakeParser#insert_statement.
|
|
68
|
+
}, {
|
|
69
|
+
key: "visitInsert_statement",
|
|
70
|
+
value: function visitInsert_statement(ctx) {
|
|
71
|
+
return this.visitChildren(ctx);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
// Visit a parse tree produced by SnowflakeParser#insert_multi_table_statement.
|
|
75
|
+
}, {
|
|
76
|
+
key: "visitInsert_multi_table_statement",
|
|
77
|
+
value: function visitInsert_multi_table_statement(ctx) {
|
|
78
|
+
return this.visitChildren(ctx);
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
// Visit a parse tree produced by SnowflakeParser#into_clause2.
|
|
82
|
+
}, {
|
|
83
|
+
key: "visitInto_clause2",
|
|
84
|
+
value: function visitInto_clause2(ctx) {
|
|
85
|
+
return this.visitChildren(ctx);
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
// Visit a parse tree produced by SnowflakeParser#values_list.
|
|
89
|
+
}, {
|
|
90
|
+
key: "visitValues_list",
|
|
91
|
+
value: function visitValues_list(ctx) {
|
|
92
|
+
return this.visitChildren(ctx);
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
// Visit a parse tree produced by SnowflakeParser#value_item.
|
|
96
|
+
}, {
|
|
97
|
+
key: "visitValue_item",
|
|
98
|
+
value: function visitValue_item(ctx) {
|
|
99
|
+
return this.visitChildren(ctx);
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
// Visit a parse tree produced by SnowflakeParser#merge_statement.
|
|
103
|
+
}, {
|
|
104
|
+
key: "visitMerge_statement",
|
|
105
|
+
value: function visitMerge_statement(ctx) {
|
|
106
|
+
return this.visitChildren(ctx);
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
// Visit a parse tree produced by SnowflakeParser#merge_matches.
|
|
110
|
+
}, {
|
|
111
|
+
key: "visitMerge_matches",
|
|
112
|
+
value: function visitMerge_matches(ctx) {
|
|
113
|
+
return this.visitChildren(ctx);
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
// Visit a parse tree produced by SnowflakeParser#merge_cond.
|
|
117
|
+
}, {
|
|
118
|
+
key: "visitMerge_cond",
|
|
119
|
+
value: function visitMerge_cond(ctx) {
|
|
120
|
+
return this.visitChildren(ctx);
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
// Visit a parse tree produced by SnowflakeParser#merge_update_delete.
|
|
124
|
+
}, {
|
|
125
|
+
key: "visitMerge_update_delete",
|
|
126
|
+
value: function visitMerge_update_delete(ctx) {
|
|
127
|
+
return this.visitChildren(ctx);
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
// Visit a parse tree produced by SnowflakeParser#merge_insert.
|
|
131
|
+
}, {
|
|
132
|
+
key: "visitMerge_insert",
|
|
133
|
+
value: function visitMerge_insert(ctx) {
|
|
134
|
+
return this.visitChildren(ctx);
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
// Visit a parse tree produced by SnowflakeParser#update_statement.
|
|
138
|
+
}, {
|
|
139
|
+
key: "visitUpdate_statement",
|
|
140
|
+
value: function visitUpdate_statement(ctx) {
|
|
141
|
+
return this.visitChildren(ctx);
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
// Visit a parse tree produced by SnowflakeParser#table_or_query.
|
|
145
|
+
}, {
|
|
146
|
+
key: "visitTable_or_query",
|
|
147
|
+
value: function visitTable_or_query(ctx) {
|
|
148
|
+
return this.visitChildren(ctx);
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
// Visit a parse tree produced by SnowflakeParser#delete_statement.
|
|
152
|
+
}, {
|
|
153
|
+
key: "visitDelete_statement",
|
|
154
|
+
value: function visitDelete_statement(ctx) {
|
|
155
|
+
return this.visitChildren(ctx);
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
// Visit a parse tree produced by SnowflakeParser#values_builder.
|
|
159
|
+
}, {
|
|
160
|
+
key: "visitValues_builder",
|
|
161
|
+
value: function visitValues_builder(ctx) {
|
|
162
|
+
return this.visitChildren(ctx);
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
// Visit a parse tree produced by SnowflakeParser#other_command.
|
|
166
|
+
}, {
|
|
167
|
+
key: "visitOther_command",
|
|
168
|
+
value: function visitOther_command(ctx) {
|
|
169
|
+
return this.visitChildren(ctx);
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
// Visit a parse tree produced by SnowflakeParser#begin_txn.
|
|
173
|
+
}, {
|
|
174
|
+
key: "visitBegin_txn",
|
|
175
|
+
value: function visitBegin_txn(ctx) {
|
|
176
|
+
return this.visitChildren(ctx);
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
// Visit a parse tree produced by SnowflakeParser#copy_into_table.
|
|
180
|
+
}, {
|
|
181
|
+
key: "visitCopy_into_table",
|
|
182
|
+
value: function visitCopy_into_table(ctx) {
|
|
183
|
+
return this.visitChildren(ctx);
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
// Visit a parse tree produced by SnowflakeParser#external_location.
|
|
187
|
+
}, {
|
|
188
|
+
key: "visitExternal_location",
|
|
189
|
+
value: function visitExternal_location(ctx) {
|
|
190
|
+
return this.visitChildren(ctx);
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
// Visit a parse tree produced by SnowflakeParser#files.
|
|
194
|
+
}, {
|
|
195
|
+
key: "visitFiles",
|
|
196
|
+
value: function visitFiles(ctx) {
|
|
197
|
+
return this.visitChildren(ctx);
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
// Visit a parse tree produced by SnowflakeParser#file_format.
|
|
201
|
+
}, {
|
|
202
|
+
key: "visitFile_format",
|
|
203
|
+
value: function visitFile_format(ctx) {
|
|
204
|
+
return this.visitChildren(ctx);
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
// Visit a parse tree produced by SnowflakeParser#format_name.
|
|
208
|
+
}, {
|
|
209
|
+
key: "visitFormat_name",
|
|
210
|
+
value: function visitFormat_name(ctx) {
|
|
211
|
+
return this.visitChildren(ctx);
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
// Visit a parse tree produced by SnowflakeParser#format_type.
|
|
215
|
+
}, {
|
|
216
|
+
key: "visitFormat_type",
|
|
217
|
+
value: function visitFormat_type(ctx) {
|
|
218
|
+
return this.visitChildren(ctx);
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
// Visit a parse tree produced by SnowflakeParser#stage_file_format.
|
|
222
|
+
}, {
|
|
223
|
+
key: "visitStage_file_format",
|
|
224
|
+
value: function visitStage_file_format(ctx) {
|
|
225
|
+
return this.visitChildren(ctx);
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
// Visit a parse tree produced by SnowflakeParser#copy_into_location.
|
|
229
|
+
}, {
|
|
230
|
+
key: "visitCopy_into_location",
|
|
231
|
+
value: function visitCopy_into_location(ctx) {
|
|
232
|
+
return this.visitChildren(ctx);
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
// Visit a parse tree produced by SnowflakeParser#comment.
|
|
236
|
+
}, {
|
|
237
|
+
key: "visitComment",
|
|
238
|
+
value: function visitComment(ctx) {
|
|
239
|
+
return this.visitChildren(ctx);
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
// Visit a parse tree produced by SnowflakeParser#function_signature.
|
|
243
|
+
}, {
|
|
244
|
+
key: "visitFunction_signature",
|
|
245
|
+
value: function visitFunction_signature(ctx) {
|
|
246
|
+
return this.visitChildren(ctx);
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
// Visit a parse tree produced by SnowflakeParser#commit.
|
|
250
|
+
}, {
|
|
251
|
+
key: "visitCommit",
|
|
252
|
+
value: function visitCommit(ctx) {
|
|
253
|
+
return this.visitChildren(ctx);
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
// Visit a parse tree produced by SnowflakeParser#execute_immediate.
|
|
257
|
+
}, {
|
|
258
|
+
key: "visitExecute_immediate",
|
|
259
|
+
value: function visitExecute_immediate(ctx) {
|
|
260
|
+
return this.visitChildren(ctx);
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
// Visit a parse tree produced by SnowflakeParser#execute_task.
|
|
264
|
+
}, {
|
|
265
|
+
key: "visitExecute_task",
|
|
266
|
+
value: function visitExecute_task(ctx) {
|
|
267
|
+
return this.visitChildren(ctx);
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
// Visit a parse tree produced by SnowflakeParser#explain.
|
|
271
|
+
}, {
|
|
272
|
+
key: "visitExplain",
|
|
273
|
+
value: function visitExplain(ctx) {
|
|
274
|
+
return this.visitChildren(ctx);
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
// Visit a parse tree produced by SnowflakeParser#parallel.
|
|
278
|
+
}, {
|
|
279
|
+
key: "visitParallel",
|
|
280
|
+
value: function visitParallel(ctx) {
|
|
281
|
+
return this.visitChildren(ctx);
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
// Visit a parse tree produced by SnowflakeParser#get_dml.
|
|
285
|
+
}, {
|
|
286
|
+
key: "visitGet_dml",
|
|
287
|
+
value: function visitGet_dml(ctx) {
|
|
288
|
+
return this.visitChildren(ctx);
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
// Visit a parse tree produced by SnowflakeParser#grant_ownership.
|
|
292
|
+
}, {
|
|
293
|
+
key: "visitGrant_ownership",
|
|
294
|
+
value: function visitGrant_ownership(ctx) {
|
|
295
|
+
return this.visitChildren(ctx);
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
// Visit a parse tree produced by SnowflakeParser#grant_to_role.
|
|
299
|
+
}, {
|
|
300
|
+
key: "visitGrant_to_role",
|
|
301
|
+
value: function visitGrant_to_role(ctx) {
|
|
302
|
+
return this.visitChildren(ctx);
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
// Visit a parse tree produced by SnowflakeParser#global_privileges.
|
|
306
|
+
}, {
|
|
307
|
+
key: "visitGlobal_privileges",
|
|
308
|
+
value: function visitGlobal_privileges(ctx) {
|
|
309
|
+
return this.visitChildren(ctx);
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
// Visit a parse tree produced by SnowflakeParser#global_privilege.
|
|
313
|
+
}, {
|
|
314
|
+
key: "visitGlobal_privilege",
|
|
315
|
+
value: function visitGlobal_privilege(ctx) {
|
|
316
|
+
return this.visitChildren(ctx);
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
// Visit a parse tree produced by SnowflakeParser#account_object_privileges.
|
|
320
|
+
}, {
|
|
321
|
+
key: "visitAccount_object_privileges",
|
|
322
|
+
value: function visitAccount_object_privileges(ctx) {
|
|
323
|
+
return this.visitChildren(ctx);
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
// Visit a parse tree produced by SnowflakeParser#account_object_privilege.
|
|
327
|
+
}, {
|
|
328
|
+
key: "visitAccount_object_privilege",
|
|
329
|
+
value: function visitAccount_object_privilege(ctx) {
|
|
330
|
+
return this.visitChildren(ctx);
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
// Visit a parse tree produced by SnowflakeParser#schema_privileges.
|
|
334
|
+
}, {
|
|
335
|
+
key: "visitSchema_privileges",
|
|
336
|
+
value: function visitSchema_privileges(ctx) {
|
|
337
|
+
return this.visitChildren(ctx);
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
// Visit a parse tree produced by SnowflakeParser#schema_privilege.
|
|
341
|
+
}, {
|
|
342
|
+
key: "visitSchema_privilege",
|
|
343
|
+
value: function visitSchema_privilege(ctx) {
|
|
344
|
+
return this.visitChildren(ctx);
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
// Visit a parse tree produced by SnowflakeParser#schema_object_privileges.
|
|
348
|
+
}, {
|
|
349
|
+
key: "visitSchema_object_privileges",
|
|
350
|
+
value: function visitSchema_object_privileges(ctx) {
|
|
351
|
+
return this.visitChildren(ctx);
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
// Visit a parse tree produced by SnowflakeParser#schema_object_privilege.
|
|
355
|
+
}, {
|
|
356
|
+
key: "visitSchema_object_privilege",
|
|
357
|
+
value: function visitSchema_object_privilege(ctx) {
|
|
358
|
+
return this.visitChildren(ctx);
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
// Visit a parse tree produced by SnowflakeParser#grant_to_share.
|
|
362
|
+
}, {
|
|
363
|
+
key: "visitGrant_to_share",
|
|
364
|
+
value: function visitGrant_to_share(ctx) {
|
|
365
|
+
return this.visitChildren(ctx);
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
// Visit a parse tree produced by SnowflakeParser#object_privilege.
|
|
369
|
+
}, {
|
|
370
|
+
key: "visitObject_privilege",
|
|
371
|
+
value: function visitObject_privilege(ctx) {
|
|
372
|
+
return this.visitChildren(ctx);
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
// Visit a parse tree produced by SnowflakeParser#grant_role.
|
|
376
|
+
}, {
|
|
377
|
+
key: "visitGrant_role",
|
|
378
|
+
value: function visitGrant_role(ctx) {
|
|
379
|
+
return this.visitChildren(ctx);
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
// Visit a parse tree produced by SnowflakeParser#role_name.
|
|
383
|
+
}, {
|
|
384
|
+
key: "visitRole_name",
|
|
385
|
+
value: function visitRole_name(ctx) {
|
|
386
|
+
return this.visitChildren(ctx);
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
// Visit a parse tree produced by SnowflakeParser#system_defined_role.
|
|
390
|
+
}, {
|
|
391
|
+
key: "visitSystem_defined_role",
|
|
392
|
+
value: function visitSystem_defined_role(ctx) {
|
|
393
|
+
return this.visitChildren(ctx);
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
// Visit a parse tree produced by SnowflakeParser#list.
|
|
397
|
+
}, {
|
|
398
|
+
key: "visitList",
|
|
399
|
+
value: function visitList(ctx) {
|
|
400
|
+
return this.visitChildren(ctx);
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
// Visit a parse tree produced by SnowflakeParser#user_stage.
|
|
404
|
+
}, {
|
|
405
|
+
key: "visitUser_stage",
|
|
406
|
+
value: function visitUser_stage(ctx) {
|
|
407
|
+
return this.visitChildren(ctx);
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
// Visit a parse tree produced by SnowflakeParser#table_stage.
|
|
411
|
+
}, {
|
|
412
|
+
key: "visitTable_stage",
|
|
413
|
+
value: function visitTable_stage(ctx) {
|
|
414
|
+
return this.visitChildren(ctx);
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
// Visit a parse tree produced by SnowflakeParser#named_stage.
|
|
418
|
+
}, {
|
|
419
|
+
key: "visitNamed_stage",
|
|
420
|
+
value: function visitNamed_stage(ctx) {
|
|
421
|
+
return this.visitChildren(ctx);
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
// Visit a parse tree produced by SnowflakeParser#stage_path.
|
|
425
|
+
}, {
|
|
426
|
+
key: "visitStage_path",
|
|
427
|
+
value: function visitStage_path(ctx) {
|
|
428
|
+
return this.visitChildren(ctx);
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
// Visit a parse tree produced by SnowflakeParser#put.
|
|
432
|
+
}, {
|
|
433
|
+
key: "visitPut",
|
|
434
|
+
value: function visitPut(ctx) {
|
|
435
|
+
return this.visitChildren(ctx);
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
// Visit a parse tree produced by SnowflakeParser#remove.
|
|
439
|
+
}, {
|
|
440
|
+
key: "visitRemove",
|
|
441
|
+
value: function visitRemove(ctx) {
|
|
442
|
+
return this.visitChildren(ctx);
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
// Visit a parse tree produced by SnowflakeParser#revoke_from_role.
|
|
446
|
+
}, {
|
|
447
|
+
key: "visitRevoke_from_role",
|
|
448
|
+
value: function visitRevoke_from_role(ctx) {
|
|
449
|
+
return this.visitChildren(ctx);
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
// Visit a parse tree produced by SnowflakeParser#revoke_from_share.
|
|
453
|
+
}, {
|
|
454
|
+
key: "visitRevoke_from_share",
|
|
455
|
+
value: function visitRevoke_from_share(ctx) {
|
|
456
|
+
return this.visitChildren(ctx);
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
// Visit a parse tree produced by SnowflakeParser#revoke_role.
|
|
460
|
+
}, {
|
|
461
|
+
key: "visitRevoke_role",
|
|
462
|
+
value: function visitRevoke_role(ctx) {
|
|
463
|
+
return this.visitChildren(ctx);
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
// Visit a parse tree produced by SnowflakeParser#rollback.
|
|
467
|
+
}, {
|
|
468
|
+
key: "visitRollback",
|
|
469
|
+
value: function visitRollback(ctx) {
|
|
470
|
+
return this.visitChildren(ctx);
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
// Visit a parse tree produced by SnowflakeParser#set.
|
|
474
|
+
}, {
|
|
475
|
+
key: "visitSet",
|
|
476
|
+
value: function visitSet(ctx) {
|
|
477
|
+
return this.visitChildren(ctx);
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
// Visit a parse tree produced by SnowflakeParser#truncate_materialized_view.
|
|
481
|
+
}, {
|
|
482
|
+
key: "visitTruncate_materialized_view",
|
|
483
|
+
value: function visitTruncate_materialized_view(ctx) {
|
|
484
|
+
return this.visitChildren(ctx);
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
// Visit a parse tree produced by SnowflakeParser#truncate_table.
|
|
488
|
+
}, {
|
|
489
|
+
key: "visitTruncate_table",
|
|
490
|
+
value: function visitTruncate_table(ctx) {
|
|
491
|
+
return this.visitChildren(ctx);
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
// Visit a parse tree produced by SnowflakeParser#unset.
|
|
495
|
+
}, {
|
|
496
|
+
key: "visitUnset",
|
|
497
|
+
value: function visitUnset(ctx) {
|
|
498
|
+
return this.visitChildren(ctx);
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
// Visit a parse tree produced by SnowflakeParser#alter_command.
|
|
502
|
+
}, {
|
|
503
|
+
key: "visitAlter_command",
|
|
504
|
+
value: function visitAlter_command(ctx) {
|
|
505
|
+
return this.visitChildren(ctx);
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
// Visit a parse tree produced by SnowflakeParser#account_params.
|
|
509
|
+
}, {
|
|
510
|
+
key: "visitAccount_params",
|
|
511
|
+
value: function visitAccount_params(ctx) {
|
|
512
|
+
return this.visitChildren(ctx);
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
// Visit a parse tree produced by SnowflakeParser#object_params.
|
|
516
|
+
}, {
|
|
517
|
+
key: "visitObject_params",
|
|
518
|
+
value: function visitObject_params(ctx) {
|
|
519
|
+
return this.visitChildren(ctx);
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
// Visit a parse tree produced by SnowflakeParser#default_ddl_collation.
|
|
523
|
+
}, {
|
|
524
|
+
key: "visitDefault_ddl_collation",
|
|
525
|
+
value: function visitDefault_ddl_collation(ctx) {
|
|
526
|
+
return this.visitChildren(ctx);
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
// Visit a parse tree produced by SnowflakeParser#object_properties.
|
|
530
|
+
}, {
|
|
531
|
+
key: "visitObject_properties",
|
|
532
|
+
value: function visitObject_properties(ctx) {
|
|
533
|
+
return this.visitChildren(ctx);
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
// Visit a parse tree produced by SnowflakeParser#session_params.
|
|
537
|
+
}, {
|
|
538
|
+
key: "visitSession_params",
|
|
539
|
+
value: function visitSession_params(ctx) {
|
|
540
|
+
return this.visitChildren(ctx);
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
// Visit a parse tree produced by SnowflakeParser#alter_account.
|
|
544
|
+
}, {
|
|
545
|
+
key: "visitAlter_account",
|
|
546
|
+
value: function visitAlter_account(ctx) {
|
|
547
|
+
return this.visitChildren(ctx);
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
// Visit a parse tree produced by SnowflakeParser#enabled_true_false.
|
|
551
|
+
}, {
|
|
552
|
+
key: "visitEnabled_true_false",
|
|
553
|
+
value: function visitEnabled_true_false(ctx) {
|
|
554
|
+
return this.visitChildren(ctx);
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
// Visit a parse tree produced by SnowflakeParser#alter_alert.
|
|
558
|
+
}, {
|
|
559
|
+
key: "visitAlter_alert",
|
|
560
|
+
value: function visitAlter_alert(ctx) {
|
|
561
|
+
return this.visitChildren(ctx);
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
// Visit a parse tree produced by SnowflakeParser#resume_suspend.
|
|
565
|
+
}, {
|
|
566
|
+
key: "visitResume_suspend",
|
|
567
|
+
value: function visitResume_suspend(ctx) {
|
|
568
|
+
return this.visitChildren(ctx);
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
// Visit a parse tree produced by SnowflakeParser#alert_set_clause.
|
|
572
|
+
}, {
|
|
573
|
+
key: "visitAlert_set_clause",
|
|
574
|
+
value: function visitAlert_set_clause(ctx) {
|
|
575
|
+
return this.visitChildren(ctx);
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
// Visit a parse tree produced by SnowflakeParser#alert_unset_clause.
|
|
579
|
+
}, {
|
|
580
|
+
key: "visitAlert_unset_clause",
|
|
581
|
+
value: function visitAlert_unset_clause(ctx) {
|
|
582
|
+
return this.visitChildren(ctx);
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
// Visit a parse tree produced by SnowflakeParser#alter_api_integration.
|
|
586
|
+
}, {
|
|
587
|
+
key: "visitAlter_api_integration",
|
|
588
|
+
value: function visitAlter_api_integration(ctx) {
|
|
589
|
+
return this.visitChildren(ctx);
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
// Visit a parse tree produced by SnowflakeParser#api_integration_property.
|
|
593
|
+
}, {
|
|
594
|
+
key: "visitApi_integration_property",
|
|
595
|
+
value: function visitApi_integration_property(ctx) {
|
|
596
|
+
return this.visitChildren(ctx);
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
// Visit a parse tree produced by SnowflakeParser#alter_connection.
|
|
600
|
+
}, {
|
|
601
|
+
key: "visitAlter_connection",
|
|
602
|
+
value: function visitAlter_connection(ctx) {
|
|
603
|
+
return this.visitChildren(ctx);
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
// Visit a parse tree produced by SnowflakeParser#alter_database.
|
|
607
|
+
}, {
|
|
608
|
+
key: "visitAlter_database",
|
|
609
|
+
value: function visitAlter_database(ctx) {
|
|
610
|
+
return this.visitChildren(ctx);
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
// Visit a parse tree produced by SnowflakeParser#database_property.
|
|
614
|
+
}, {
|
|
615
|
+
key: "visitDatabase_property",
|
|
616
|
+
value: function visitDatabase_property(ctx) {
|
|
617
|
+
return this.visitChildren(ctx);
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
// Visit a parse tree produced by SnowflakeParser#account_id_list.
|
|
621
|
+
}, {
|
|
622
|
+
key: "visitAccount_id_list",
|
|
623
|
+
value: function visitAccount_id_list(ctx) {
|
|
624
|
+
return this.visitChildren(ctx);
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
// Visit a parse tree produced by SnowflakeParser#alter_dynamic_table.
|
|
628
|
+
}, {
|
|
629
|
+
key: "visitAlter_dynamic_table",
|
|
630
|
+
value: function visitAlter_dynamic_table(ctx) {
|
|
631
|
+
return this.visitChildren(ctx);
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
// Visit a parse tree produced by SnowflakeParser#alter_external_table.
|
|
635
|
+
}, {
|
|
636
|
+
key: "visitAlter_external_table",
|
|
637
|
+
value: function visitAlter_external_table(ctx) {
|
|
638
|
+
return this.visitChildren(ctx);
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
// Visit a parse tree produced by SnowflakeParser#ignore_edition_check.
|
|
642
|
+
}, {
|
|
643
|
+
key: "visitIgnore_edition_check",
|
|
644
|
+
value: function visitIgnore_edition_check(ctx) {
|
|
645
|
+
return this.visitChildren(ctx);
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
// Visit a parse tree produced by SnowflakeParser#replication_schedule.
|
|
649
|
+
}, {
|
|
650
|
+
key: "visitReplication_schedule",
|
|
651
|
+
value: function visitReplication_schedule(ctx) {
|
|
652
|
+
return this.visitChildren(ctx);
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
// Visit a parse tree produced by SnowflakeParser#db_name_list.
|
|
656
|
+
}, {
|
|
657
|
+
key: "visitDb_name_list",
|
|
658
|
+
value: function visitDb_name_list(ctx) {
|
|
659
|
+
return this.visitChildren(ctx);
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
// Visit a parse tree produced by SnowflakeParser#share_name_list.
|
|
663
|
+
}, {
|
|
664
|
+
key: "visitShare_name_list",
|
|
665
|
+
value: function visitShare_name_list(ctx) {
|
|
666
|
+
return this.visitChildren(ctx);
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
// Visit a parse tree produced by SnowflakeParser#full_acct_list.
|
|
670
|
+
}, {
|
|
671
|
+
key: "visitFull_acct_list",
|
|
672
|
+
value: function visitFull_acct_list(ctx) {
|
|
673
|
+
return this.visitChildren(ctx);
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
// Visit a parse tree produced by SnowflakeParser#alter_failover_group.
|
|
677
|
+
}, {
|
|
678
|
+
key: "visitAlter_failover_group",
|
|
679
|
+
value: function visitAlter_failover_group(ctx) {
|
|
680
|
+
return this.visitChildren(ctx);
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
// Visit a parse tree produced by SnowflakeParser#alter_file_format.
|
|
684
|
+
}, {
|
|
685
|
+
key: "visitAlter_file_format",
|
|
686
|
+
value: function visitAlter_file_format(ctx) {
|
|
687
|
+
return this.visitChildren(ctx);
|
|
688
|
+
}
|
|
689
|
+
|
|
690
|
+
// Visit a parse tree produced by SnowflakeParser#alter_function.
|
|
691
|
+
}, {
|
|
692
|
+
key: "visitAlter_function",
|
|
693
|
+
value: function visitAlter_function(ctx) {
|
|
694
|
+
return this.visitChildren(ctx);
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
// Visit a parse tree produced by SnowflakeParser#alter_function_signature.
|
|
698
|
+
}, {
|
|
699
|
+
key: "visitAlter_function_signature",
|
|
700
|
+
value: function visitAlter_function_signature(ctx) {
|
|
701
|
+
return this.visitChildren(ctx);
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
// Visit a parse tree produced by SnowflakeParser#data_type_list.
|
|
705
|
+
}, {
|
|
706
|
+
key: "visitData_type_list",
|
|
707
|
+
value: function visitData_type_list(ctx) {
|
|
708
|
+
return this.visitChildren(ctx);
|
|
709
|
+
}
|
|
710
|
+
|
|
711
|
+
// Visit a parse tree produced by SnowflakeParser#alter_masking_policy.
|
|
712
|
+
}, {
|
|
713
|
+
key: "visitAlter_masking_policy",
|
|
714
|
+
value: function visitAlter_masking_policy(ctx) {
|
|
715
|
+
return this.visitChildren(ctx);
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
// Visit a parse tree produced by SnowflakeParser#alter_materialized_view.
|
|
719
|
+
}, {
|
|
720
|
+
key: "visitAlter_materialized_view",
|
|
721
|
+
value: function visitAlter_materialized_view(ctx) {
|
|
722
|
+
return this.visitChildren(ctx);
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
// Visit a parse tree produced by SnowflakeParser#alter_network_policy.
|
|
726
|
+
}, {
|
|
727
|
+
key: "visitAlter_network_policy",
|
|
728
|
+
value: function visitAlter_network_policy(ctx) {
|
|
729
|
+
return this.visitChildren(ctx);
|
|
730
|
+
}
|
|
731
|
+
|
|
732
|
+
// Visit a parse tree produced by SnowflakeParser#alter_notification_integration.
|
|
733
|
+
}, {
|
|
734
|
+
key: "visitAlter_notification_integration",
|
|
735
|
+
value: function visitAlter_notification_integration(ctx) {
|
|
736
|
+
return this.visitChildren(ctx);
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
// Visit a parse tree produced by SnowflakeParser#alter_pipe.
|
|
740
|
+
}, {
|
|
741
|
+
key: "visitAlter_pipe",
|
|
742
|
+
value: function visitAlter_pipe(ctx) {
|
|
743
|
+
return this.visitChildren(ctx);
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
// Visit a parse tree produced by SnowflakeParser#alter_procedure.
|
|
747
|
+
}, {
|
|
748
|
+
key: "visitAlter_procedure",
|
|
749
|
+
value: function visitAlter_procedure(ctx) {
|
|
750
|
+
return this.visitChildren(ctx);
|
|
751
|
+
}
|
|
752
|
+
|
|
753
|
+
// Visit a parse tree produced by SnowflakeParser#alter_replication_group.
|
|
754
|
+
}, {
|
|
755
|
+
key: "visitAlter_replication_group",
|
|
756
|
+
value: function visitAlter_replication_group(ctx) {
|
|
757
|
+
return this.visitChildren(ctx);
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
// Visit a parse tree produced by SnowflakeParser#credit_quota.
|
|
761
|
+
}, {
|
|
762
|
+
key: "visitCredit_quota",
|
|
763
|
+
value: function visitCredit_quota(ctx) {
|
|
764
|
+
return this.visitChildren(ctx);
|
|
765
|
+
}
|
|
766
|
+
|
|
767
|
+
// Visit a parse tree produced by SnowflakeParser#frequency.
|
|
768
|
+
}, {
|
|
769
|
+
key: "visitFrequency",
|
|
770
|
+
value: function visitFrequency(ctx) {
|
|
771
|
+
return this.visitChildren(ctx);
|
|
772
|
+
}
|
|
773
|
+
|
|
774
|
+
// Visit a parse tree produced by SnowflakeParser#notify_users.
|
|
775
|
+
}, {
|
|
776
|
+
key: "visitNotify_users",
|
|
777
|
+
value: function visitNotify_users(ctx) {
|
|
778
|
+
return this.visitChildren(ctx);
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
// Visit a parse tree produced by SnowflakeParser#triggerDefinition.
|
|
782
|
+
}, {
|
|
783
|
+
key: "visitTriggerDefinition",
|
|
784
|
+
value: function visitTriggerDefinition(ctx) {
|
|
785
|
+
return this.visitChildren(ctx);
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
// Visit a parse tree produced by SnowflakeParser#alter_resource_monitor.
|
|
789
|
+
}, {
|
|
790
|
+
key: "visitAlter_resource_monitor",
|
|
791
|
+
value: function visitAlter_resource_monitor(ctx) {
|
|
792
|
+
return this.visitChildren(ctx);
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
// Visit a parse tree produced by SnowflakeParser#alter_role.
|
|
796
|
+
}, {
|
|
797
|
+
key: "visitAlter_role",
|
|
798
|
+
value: function visitAlter_role(ctx) {
|
|
799
|
+
return this.visitChildren(ctx);
|
|
800
|
+
}
|
|
801
|
+
|
|
802
|
+
// Visit a parse tree produced by SnowflakeParser#alter_row_access_policy.
|
|
803
|
+
}, {
|
|
804
|
+
key: "visitAlter_row_access_policy",
|
|
805
|
+
value: function visitAlter_row_access_policy(ctx) {
|
|
806
|
+
return this.visitChildren(ctx);
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
// Visit a parse tree produced by SnowflakeParser#alter_schema.
|
|
810
|
+
}, {
|
|
811
|
+
key: "visitAlter_schema",
|
|
812
|
+
value: function visitAlter_schema(ctx) {
|
|
813
|
+
return this.visitChildren(ctx);
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
// Visit a parse tree produced by SnowflakeParser#schema_property.
|
|
817
|
+
}, {
|
|
818
|
+
key: "visitSchema_property",
|
|
819
|
+
value: function visitSchema_property(ctx) {
|
|
820
|
+
return this.visitChildren(ctx);
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
// Visit a parse tree produced by SnowflakeParser#alter_sequence.
|
|
824
|
+
}, {
|
|
825
|
+
key: "visitAlter_sequence",
|
|
826
|
+
value: function visitAlter_sequence(ctx) {
|
|
827
|
+
return this.visitChildren(ctx);
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
// Visit a parse tree produced by SnowflakeParser#alter_security_integration_external_oauth.
|
|
831
|
+
}, {
|
|
832
|
+
key: "visitAlter_security_integration_external_oauth",
|
|
833
|
+
value: function visitAlter_security_integration_external_oauth(ctx) {
|
|
834
|
+
return this.visitChildren(ctx);
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
// Visit a parse tree produced by SnowflakeParser#security_integration_external_oauth_property.
|
|
838
|
+
}, {
|
|
839
|
+
key: "visitSecurity_integration_external_oauth_property",
|
|
840
|
+
value: function visitSecurity_integration_external_oauth_property(ctx) {
|
|
841
|
+
return this.visitChildren(ctx);
|
|
842
|
+
}
|
|
843
|
+
|
|
844
|
+
// Visit a parse tree produced by SnowflakeParser#alter_security_integration_snowflake_oauth.
|
|
845
|
+
}, {
|
|
846
|
+
key: "visitAlter_security_integration_snowflake_oauth",
|
|
847
|
+
value: function visitAlter_security_integration_snowflake_oauth(ctx) {
|
|
848
|
+
return this.visitChildren(ctx);
|
|
849
|
+
}
|
|
850
|
+
|
|
851
|
+
// Visit a parse tree produced by SnowflakeParser#security_integration_snowflake_oauth_property.
|
|
852
|
+
}, {
|
|
853
|
+
key: "visitSecurity_integration_snowflake_oauth_property",
|
|
854
|
+
value: function visitSecurity_integration_snowflake_oauth_property(ctx) {
|
|
855
|
+
return this.visitChildren(ctx);
|
|
856
|
+
}
|
|
857
|
+
|
|
858
|
+
// Visit a parse tree produced by SnowflakeParser#alter_security_integration_saml2.
|
|
859
|
+
}, {
|
|
860
|
+
key: "visitAlter_security_integration_saml2",
|
|
861
|
+
value: function visitAlter_security_integration_saml2(ctx) {
|
|
862
|
+
return this.visitChildren(ctx);
|
|
863
|
+
}
|
|
864
|
+
|
|
865
|
+
// Visit a parse tree produced by SnowflakeParser#alter_security_integration_scim.
|
|
866
|
+
}, {
|
|
867
|
+
key: "visitAlter_security_integration_scim",
|
|
868
|
+
value: function visitAlter_security_integration_scim(ctx) {
|
|
869
|
+
return this.visitChildren(ctx);
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
// Visit a parse tree produced by SnowflakeParser#security_integration_scim_property.
|
|
873
|
+
}, {
|
|
874
|
+
key: "visitSecurity_integration_scim_property",
|
|
875
|
+
value: function visitSecurity_integration_scim_property(ctx) {
|
|
876
|
+
return this.visitChildren(ctx);
|
|
877
|
+
}
|
|
878
|
+
|
|
879
|
+
// Visit a parse tree produced by SnowflakeParser#alter_session.
|
|
880
|
+
}, {
|
|
881
|
+
key: "visitAlter_session",
|
|
882
|
+
value: function visitAlter_session(ctx) {
|
|
883
|
+
return this.visitChildren(ctx);
|
|
884
|
+
}
|
|
885
|
+
|
|
886
|
+
// Visit a parse tree produced by SnowflakeParser#alter_session_policy.
|
|
887
|
+
}, {
|
|
888
|
+
key: "visitAlter_session_policy",
|
|
889
|
+
value: function visitAlter_session_policy(ctx) {
|
|
890
|
+
return this.visitChildren(ctx);
|
|
891
|
+
}
|
|
892
|
+
|
|
893
|
+
// Visit a parse tree produced by SnowflakeParser#alter_password_policy.
|
|
894
|
+
}, {
|
|
895
|
+
key: "visitAlter_password_policy",
|
|
896
|
+
value: function visitAlter_password_policy(ctx) {
|
|
897
|
+
return this.visitChildren(ctx);
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
// Visit a parse tree produced by SnowflakeParser#alter_share.
|
|
901
|
+
}, {
|
|
902
|
+
key: "visitAlter_share",
|
|
903
|
+
value: function visitAlter_share(ctx) {
|
|
904
|
+
return this.visitChildren(ctx);
|
|
905
|
+
}
|
|
906
|
+
|
|
907
|
+
// Visit a parse tree produced by SnowflakeParser#alter_storage_integration.
|
|
908
|
+
}, {
|
|
909
|
+
key: "visitAlter_storage_integration",
|
|
910
|
+
value: function visitAlter_storage_integration(ctx) {
|
|
911
|
+
return this.visitChildren(ctx);
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
// Visit a parse tree produced by SnowflakeParser#alter_stream.
|
|
915
|
+
}, {
|
|
916
|
+
key: "visitAlter_stream",
|
|
917
|
+
value: function visitAlter_stream(ctx) {
|
|
918
|
+
return this.visitChildren(ctx);
|
|
919
|
+
}
|
|
920
|
+
|
|
921
|
+
// Visit a parse tree produced by SnowflakeParser#alter_table.
|
|
922
|
+
}, {
|
|
923
|
+
key: "visitAlter_table",
|
|
924
|
+
value: function visitAlter_table(ctx) {
|
|
925
|
+
return this.visitChildren(ctx);
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
// Visit a parse tree produced by SnowflakeParser#clustering_action.
|
|
929
|
+
}, {
|
|
930
|
+
key: "visitClustering_action",
|
|
931
|
+
value: function visitClustering_action(ctx) {
|
|
932
|
+
return this.visitChildren(ctx);
|
|
933
|
+
}
|
|
934
|
+
|
|
935
|
+
// Visit a parse tree produced by SnowflakeParser#table_column_action.
|
|
936
|
+
}, {
|
|
937
|
+
key: "visitTable_column_action",
|
|
938
|
+
value: function visitTable_column_action(ctx) {
|
|
939
|
+
return this.visitChildren(ctx);
|
|
940
|
+
}
|
|
941
|
+
|
|
942
|
+
// Visit a parse tree produced by SnowflakeParser#alter_column_clause.
|
|
943
|
+
}, {
|
|
944
|
+
key: "visitAlter_column_clause",
|
|
945
|
+
value: function visitAlter_column_clause(ctx) {
|
|
946
|
+
return this.visitChildren(ctx);
|
|
947
|
+
}
|
|
948
|
+
|
|
949
|
+
// Visit a parse tree produced by SnowflakeParser#inline_constraint.
|
|
950
|
+
}, {
|
|
951
|
+
key: "visitInline_constraint",
|
|
952
|
+
value: function visitInline_constraint(ctx) {
|
|
953
|
+
return this.visitChildren(ctx);
|
|
954
|
+
}
|
|
955
|
+
|
|
956
|
+
// Visit a parse tree produced by SnowflakeParser#enforced_not_enforced.
|
|
957
|
+
}, {
|
|
958
|
+
key: "visitEnforced_not_enforced",
|
|
959
|
+
value: function visitEnforced_not_enforced(ctx) {
|
|
960
|
+
return this.visitChildren(ctx);
|
|
961
|
+
}
|
|
962
|
+
|
|
963
|
+
// Visit a parse tree produced by SnowflakeParser#deferrable_not_deferrable.
|
|
964
|
+
}, {
|
|
965
|
+
key: "visitDeferrable_not_deferrable",
|
|
966
|
+
value: function visitDeferrable_not_deferrable(ctx) {
|
|
967
|
+
return this.visitChildren(ctx);
|
|
968
|
+
}
|
|
969
|
+
|
|
970
|
+
// Visit a parse tree produced by SnowflakeParser#initially_deferred_or_immediate.
|
|
971
|
+
}, {
|
|
972
|
+
key: "visitInitially_deferred_or_immediate",
|
|
973
|
+
value: function visitInitially_deferred_or_immediate(ctx) {
|
|
974
|
+
return this.visitChildren(ctx);
|
|
975
|
+
}
|
|
976
|
+
|
|
977
|
+
// Visit a parse tree produced by SnowflakeParser#common_constraint_properties.
|
|
978
|
+
}, {
|
|
979
|
+
key: "visitCommon_constraint_properties",
|
|
980
|
+
value: function visitCommon_constraint_properties(ctx) {
|
|
981
|
+
return this.visitChildren(ctx);
|
|
982
|
+
}
|
|
983
|
+
|
|
984
|
+
// Visit a parse tree produced by SnowflakeParser#on_update.
|
|
985
|
+
}, {
|
|
986
|
+
key: "visitOn_update",
|
|
987
|
+
value: function visitOn_update(ctx) {
|
|
988
|
+
return this.visitChildren(ctx);
|
|
989
|
+
}
|
|
990
|
+
|
|
991
|
+
// Visit a parse tree produced by SnowflakeParser#on_delete.
|
|
992
|
+
}, {
|
|
993
|
+
key: "visitOn_delete",
|
|
994
|
+
value: function visitOn_delete(ctx) {
|
|
995
|
+
return this.visitChildren(ctx);
|
|
996
|
+
}
|
|
997
|
+
|
|
998
|
+
// Visit a parse tree produced by SnowflakeParser#foreign_key_match.
|
|
999
|
+
}, {
|
|
1000
|
+
key: "visitForeign_key_match",
|
|
1001
|
+
value: function visitForeign_key_match(ctx) {
|
|
1002
|
+
return this.visitChildren(ctx);
|
|
1003
|
+
}
|
|
1004
|
+
|
|
1005
|
+
// Visit a parse tree produced by SnowflakeParser#on_action.
|
|
1006
|
+
}, {
|
|
1007
|
+
key: "visitOn_action",
|
|
1008
|
+
value: function visitOn_action(ctx) {
|
|
1009
|
+
return this.visitChildren(ctx);
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
// Visit a parse tree produced by SnowflakeParser#constraint_properties.
|
|
1013
|
+
}, {
|
|
1014
|
+
key: "visitConstraint_properties",
|
|
1015
|
+
value: function visitConstraint_properties(ctx) {
|
|
1016
|
+
return this.visitChildren(ctx);
|
|
1017
|
+
}
|
|
1018
|
+
|
|
1019
|
+
// Visit a parse tree produced by SnowflakeParser#ext_table_column_action.
|
|
1020
|
+
}, {
|
|
1021
|
+
key: "visitExt_table_column_action",
|
|
1022
|
+
value: function visitExt_table_column_action(ctx) {
|
|
1023
|
+
return this.visitChildren(ctx);
|
|
1024
|
+
}
|
|
1025
|
+
|
|
1026
|
+
// Visit a parse tree produced by SnowflakeParser#constraint_action.
|
|
1027
|
+
}, {
|
|
1028
|
+
key: "visitConstraint_action",
|
|
1029
|
+
value: function visitConstraint_action(ctx) {
|
|
1030
|
+
return this.visitChildren(ctx);
|
|
1031
|
+
}
|
|
1032
|
+
|
|
1033
|
+
// Visit a parse tree produced by SnowflakeParser#search_optimization_action.
|
|
1034
|
+
}, {
|
|
1035
|
+
key: "visitSearch_optimization_action",
|
|
1036
|
+
value: function visitSearch_optimization_action(ctx) {
|
|
1037
|
+
return this.visitChildren(ctx);
|
|
1038
|
+
}
|
|
1039
|
+
|
|
1040
|
+
// Visit a parse tree produced by SnowflakeParser#search_method_with_target.
|
|
1041
|
+
}, {
|
|
1042
|
+
key: "visitSearch_method_with_target",
|
|
1043
|
+
value: function visitSearch_method_with_target(ctx) {
|
|
1044
|
+
return this.visitChildren(ctx);
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
// Visit a parse tree produced by SnowflakeParser#alter_table_alter_column.
|
|
1048
|
+
}, {
|
|
1049
|
+
key: "visitAlter_table_alter_column",
|
|
1050
|
+
value: function visitAlter_table_alter_column(ctx) {
|
|
1051
|
+
return this.visitChildren(ctx);
|
|
1052
|
+
}
|
|
1053
|
+
|
|
1054
|
+
// Visit a parse tree produced by SnowflakeParser#alter_column_decl_list.
|
|
1055
|
+
}, {
|
|
1056
|
+
key: "visitAlter_column_decl_list",
|
|
1057
|
+
value: function visitAlter_column_decl_list(ctx) {
|
|
1058
|
+
return this.visitChildren(ctx);
|
|
1059
|
+
}
|
|
1060
|
+
|
|
1061
|
+
// Visit a parse tree produced by SnowflakeParser#alter_column_decl.
|
|
1062
|
+
}, {
|
|
1063
|
+
key: "visitAlter_column_decl",
|
|
1064
|
+
value: function visitAlter_column_decl(ctx) {
|
|
1065
|
+
return this.visitChildren(ctx);
|
|
1066
|
+
}
|
|
1067
|
+
|
|
1068
|
+
// Visit a parse tree produced by SnowflakeParser#alter_column_opts.
|
|
1069
|
+
}, {
|
|
1070
|
+
key: "visitAlter_column_opts",
|
|
1071
|
+
value: function visitAlter_column_opts(ctx) {
|
|
1072
|
+
return this.visitChildren(ctx);
|
|
1073
|
+
}
|
|
1074
|
+
|
|
1075
|
+
// Visit a parse tree produced by SnowflakeParser#column_set_tags.
|
|
1076
|
+
}, {
|
|
1077
|
+
key: "visitColumn_set_tags",
|
|
1078
|
+
value: function visitColumn_set_tags(ctx) {
|
|
1079
|
+
return this.visitChildren(ctx);
|
|
1080
|
+
}
|
|
1081
|
+
|
|
1082
|
+
// Visit a parse tree produced by SnowflakeParser#column_unset_tags.
|
|
1083
|
+
}, {
|
|
1084
|
+
key: "visitColumn_unset_tags",
|
|
1085
|
+
value: function visitColumn_unset_tags(ctx) {
|
|
1086
|
+
return this.visitChildren(ctx);
|
|
1087
|
+
}
|
|
1088
|
+
|
|
1089
|
+
// Visit a parse tree produced by SnowflakeParser#alter_tag.
|
|
1090
|
+
}, {
|
|
1091
|
+
key: "visitAlter_tag",
|
|
1092
|
+
value: function visitAlter_tag(ctx) {
|
|
1093
|
+
return this.visitChildren(ctx);
|
|
1094
|
+
}
|
|
1095
|
+
|
|
1096
|
+
// Visit a parse tree produced by SnowflakeParser#alter_task.
|
|
1097
|
+
}, {
|
|
1098
|
+
key: "visitAlter_task",
|
|
1099
|
+
value: function visitAlter_task(ctx) {
|
|
1100
|
+
return this.visitChildren(ctx);
|
|
1101
|
+
}
|
|
1102
|
+
|
|
1103
|
+
// Visit a parse tree produced by SnowflakeParser#alter_user.
|
|
1104
|
+
}, {
|
|
1105
|
+
key: "visitAlter_user",
|
|
1106
|
+
value: function visitAlter_user(ctx) {
|
|
1107
|
+
return this.visitChildren(ctx);
|
|
1108
|
+
}
|
|
1109
|
+
|
|
1110
|
+
// Visit a parse tree produced by SnowflakeParser#alter_view.
|
|
1111
|
+
}, {
|
|
1112
|
+
key: "visitAlter_view",
|
|
1113
|
+
value: function visitAlter_view(ctx) {
|
|
1114
|
+
return this.visitChildren(ctx);
|
|
1115
|
+
}
|
|
1116
|
+
|
|
1117
|
+
// Visit a parse tree produced by SnowflakeParser#alter_modify.
|
|
1118
|
+
}, {
|
|
1119
|
+
key: "visitAlter_modify",
|
|
1120
|
+
value: function visitAlter_modify(ctx) {
|
|
1121
|
+
return this.visitChildren(ctx);
|
|
1122
|
+
}
|
|
1123
|
+
|
|
1124
|
+
// Visit a parse tree produced by SnowflakeParser#alter_warehouse.
|
|
1125
|
+
}, {
|
|
1126
|
+
key: "visitAlter_warehouse",
|
|
1127
|
+
value: function visitAlter_warehouse(ctx) {
|
|
1128
|
+
return this.visitChildren(ctx);
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1131
|
+
// Visit a parse tree produced by SnowflakeParser#alter_connection_opts.
|
|
1132
|
+
}, {
|
|
1133
|
+
key: "visitAlter_connection_opts",
|
|
1134
|
+
value: function visitAlter_connection_opts(ctx) {
|
|
1135
|
+
return this.visitChildren(ctx);
|
|
1136
|
+
}
|
|
1137
|
+
|
|
1138
|
+
// Visit a parse tree produced by SnowflakeParser#alter_user_opts.
|
|
1139
|
+
}, {
|
|
1140
|
+
key: "visitAlter_user_opts",
|
|
1141
|
+
value: function visitAlter_user_opts(ctx) {
|
|
1142
|
+
return this.visitChildren(ctx);
|
|
1143
|
+
}
|
|
1144
|
+
|
|
1145
|
+
// Visit a parse tree produced by SnowflakeParser#alter_tag_opts.
|
|
1146
|
+
}, {
|
|
1147
|
+
key: "visitAlter_tag_opts",
|
|
1148
|
+
value: function visitAlter_tag_opts(ctx) {
|
|
1149
|
+
return this.visitChildren(ctx);
|
|
1150
|
+
}
|
|
1151
|
+
|
|
1152
|
+
// Visit a parse tree produced by SnowflakeParser#alter_network_policy_opts.
|
|
1153
|
+
}, {
|
|
1154
|
+
key: "visitAlter_network_policy_opts",
|
|
1155
|
+
value: function visitAlter_network_policy_opts(ctx) {
|
|
1156
|
+
return this.visitChildren(ctx);
|
|
1157
|
+
}
|
|
1158
|
+
|
|
1159
|
+
// Visit a parse tree produced by SnowflakeParser#alter_warehouse_opts.
|
|
1160
|
+
}, {
|
|
1161
|
+
key: "visitAlter_warehouse_opts",
|
|
1162
|
+
value: function visitAlter_warehouse_opts(ctx) {
|
|
1163
|
+
return this.visitChildren(ctx);
|
|
1164
|
+
}
|
|
1165
|
+
|
|
1166
|
+
// Visit a parse tree produced by SnowflakeParser#alter_account_opts.
|
|
1167
|
+
}, {
|
|
1168
|
+
key: "visitAlter_account_opts",
|
|
1169
|
+
value: function visitAlter_account_opts(ctx) {
|
|
1170
|
+
return this.visitChildren(ctx);
|
|
1171
|
+
}
|
|
1172
|
+
|
|
1173
|
+
// Visit a parse tree produced by SnowflakeParser#set_tags.
|
|
1174
|
+
}, {
|
|
1175
|
+
key: "visitSet_tags",
|
|
1176
|
+
value: function visitSet_tags(ctx) {
|
|
1177
|
+
return this.visitChildren(ctx);
|
|
1178
|
+
}
|
|
1179
|
+
|
|
1180
|
+
// Visit a parse tree produced by SnowflakeParser#tag_decl_list.
|
|
1181
|
+
}, {
|
|
1182
|
+
key: "visitTag_decl_list",
|
|
1183
|
+
value: function visitTag_decl_list(ctx) {
|
|
1184
|
+
return this.visitChildren(ctx);
|
|
1185
|
+
}
|
|
1186
|
+
|
|
1187
|
+
// Visit a parse tree produced by SnowflakeParser#unset_tags.
|
|
1188
|
+
}, {
|
|
1189
|
+
key: "visitUnset_tags",
|
|
1190
|
+
value: function visitUnset_tags(ctx) {
|
|
1191
|
+
return this.visitChildren(ctx);
|
|
1192
|
+
}
|
|
1193
|
+
|
|
1194
|
+
// Visit a parse tree produced by SnowflakeParser#create_command.
|
|
1195
|
+
}, {
|
|
1196
|
+
key: "visitCreate_command",
|
|
1197
|
+
value: function visitCreate_command(ctx) {
|
|
1198
|
+
return this.visitChildren(ctx);
|
|
1199
|
+
}
|
|
1200
|
+
|
|
1201
|
+
// Visit a parse tree produced by SnowflakeParser#create_account.
|
|
1202
|
+
}, {
|
|
1203
|
+
key: "visitCreate_account",
|
|
1204
|
+
value: function visitCreate_account(ctx) {
|
|
1205
|
+
return this.visitChildren(ctx);
|
|
1206
|
+
}
|
|
1207
|
+
|
|
1208
|
+
// Visit a parse tree produced by SnowflakeParser#create_alert.
|
|
1209
|
+
}, {
|
|
1210
|
+
key: "visitCreate_alert",
|
|
1211
|
+
value: function visitCreate_alert(ctx) {
|
|
1212
|
+
return this.visitChildren(ctx);
|
|
1213
|
+
}
|
|
1214
|
+
|
|
1215
|
+
// Visit a parse tree produced by SnowflakeParser#alert_condition.
|
|
1216
|
+
}, {
|
|
1217
|
+
key: "visitAlert_condition",
|
|
1218
|
+
value: function visitAlert_condition(ctx) {
|
|
1219
|
+
return this.visitChildren(ctx);
|
|
1220
|
+
}
|
|
1221
|
+
|
|
1222
|
+
// Visit a parse tree produced by SnowflakeParser#alert_action.
|
|
1223
|
+
}, {
|
|
1224
|
+
key: "visitAlert_action",
|
|
1225
|
+
value: function visitAlert_action(ctx) {
|
|
1226
|
+
return this.visitChildren(ctx);
|
|
1227
|
+
}
|
|
1228
|
+
|
|
1229
|
+
// Visit a parse tree produced by SnowflakeParser#create_api_integration.
|
|
1230
|
+
}, {
|
|
1231
|
+
key: "visitCreate_api_integration",
|
|
1232
|
+
value: function visitCreate_api_integration(ctx) {
|
|
1233
|
+
return this.visitChildren(ctx);
|
|
1234
|
+
}
|
|
1235
|
+
|
|
1236
|
+
// Visit a parse tree produced by SnowflakeParser#create_object_clone.
|
|
1237
|
+
}, {
|
|
1238
|
+
key: "visitCreate_object_clone",
|
|
1239
|
+
value: function visitCreate_object_clone(ctx) {
|
|
1240
|
+
return this.visitChildren(ctx);
|
|
1241
|
+
}
|
|
1242
|
+
|
|
1243
|
+
// Visit a parse tree produced by SnowflakeParser#create_connection.
|
|
1244
|
+
}, {
|
|
1245
|
+
key: "visitCreate_connection",
|
|
1246
|
+
value: function visitCreate_connection(ctx) {
|
|
1247
|
+
return this.visitChildren(ctx);
|
|
1248
|
+
}
|
|
1249
|
+
|
|
1250
|
+
// Visit a parse tree produced by SnowflakeParser#create_database.
|
|
1251
|
+
}, {
|
|
1252
|
+
key: "visitCreate_database",
|
|
1253
|
+
value: function visitCreate_database(ctx) {
|
|
1254
|
+
return this.visitChildren(ctx);
|
|
1255
|
+
}
|
|
1256
|
+
|
|
1257
|
+
// Visit a parse tree produced by SnowflakeParser#clone_at_before.
|
|
1258
|
+
}, {
|
|
1259
|
+
key: "visitClone_at_before",
|
|
1260
|
+
value: function visitClone_at_before(ctx) {
|
|
1261
|
+
return this.visitChildren(ctx);
|
|
1262
|
+
}
|
|
1263
|
+
|
|
1264
|
+
// Visit a parse tree produced by SnowflakeParser#at_before1.
|
|
1265
|
+
}, {
|
|
1266
|
+
key: "visitAt_before1",
|
|
1267
|
+
value: function visitAt_before1(ctx) {
|
|
1268
|
+
return this.visitChildren(ctx);
|
|
1269
|
+
}
|
|
1270
|
+
|
|
1271
|
+
// Visit a parse tree produced by SnowflakeParser#header_decl.
|
|
1272
|
+
}, {
|
|
1273
|
+
key: "visitHeader_decl",
|
|
1274
|
+
value: function visitHeader_decl(ctx) {
|
|
1275
|
+
return this.visitChildren(ctx);
|
|
1276
|
+
}
|
|
1277
|
+
|
|
1278
|
+
// Visit a parse tree produced by SnowflakeParser#compression_type.
|
|
1279
|
+
}, {
|
|
1280
|
+
key: "visitCompression_type",
|
|
1281
|
+
value: function visitCompression_type(ctx) {
|
|
1282
|
+
return this.visitChildren(ctx);
|
|
1283
|
+
}
|
|
1284
|
+
|
|
1285
|
+
// Visit a parse tree produced by SnowflakeParser#compression.
|
|
1286
|
+
}, {
|
|
1287
|
+
key: "visitCompression",
|
|
1288
|
+
value: function visitCompression(ctx) {
|
|
1289
|
+
return this.visitChildren(ctx);
|
|
1290
|
+
}
|
|
1291
|
+
|
|
1292
|
+
// Visit a parse tree produced by SnowflakeParser#create_dynamic_table.
|
|
1293
|
+
}, {
|
|
1294
|
+
key: "visitCreate_dynamic_table",
|
|
1295
|
+
value: function visitCreate_dynamic_table(ctx) {
|
|
1296
|
+
return this.visitChildren(ctx);
|
|
1297
|
+
}
|
|
1298
|
+
|
|
1299
|
+
// Visit a parse tree produced by SnowflakeParser#create_event_table.
|
|
1300
|
+
}, {
|
|
1301
|
+
key: "visitCreate_event_table",
|
|
1302
|
+
value: function visitCreate_event_table(ctx) {
|
|
1303
|
+
return this.visitChildren(ctx);
|
|
1304
|
+
}
|
|
1305
|
+
|
|
1306
|
+
// Visit a parse tree produced by SnowflakeParser#create_external_function.
|
|
1307
|
+
}, {
|
|
1308
|
+
key: "visitCreate_external_function",
|
|
1309
|
+
value: function visitCreate_external_function(ctx) {
|
|
1310
|
+
return this.visitChildren(ctx);
|
|
1311
|
+
}
|
|
1312
|
+
|
|
1313
|
+
// Visit a parse tree produced by SnowflakeParser#create_external_table.
|
|
1314
|
+
}, {
|
|
1315
|
+
key: "visitCreate_external_table",
|
|
1316
|
+
value: function visitCreate_external_table(ctx) {
|
|
1317
|
+
return this.visitChildren(ctx);
|
|
1318
|
+
}
|
|
1319
|
+
|
|
1320
|
+
// Visit a parse tree produced by SnowflakeParser#external_table_column_decl.
|
|
1321
|
+
}, {
|
|
1322
|
+
key: "visitExternal_table_column_decl",
|
|
1323
|
+
value: function visitExternal_table_column_decl(ctx) {
|
|
1324
|
+
return this.visitChildren(ctx);
|
|
1325
|
+
}
|
|
1326
|
+
|
|
1327
|
+
// Visit a parse tree produced by SnowflakeParser#external_table_column_decl_list.
|
|
1328
|
+
}, {
|
|
1329
|
+
key: "visitExternal_table_column_decl_list",
|
|
1330
|
+
value: function visitExternal_table_column_decl_list(ctx) {
|
|
1331
|
+
return this.visitChildren(ctx);
|
|
1332
|
+
}
|
|
1333
|
+
|
|
1334
|
+
// Visit a parse tree produced by SnowflakeParser#full_acct.
|
|
1335
|
+
}, {
|
|
1336
|
+
key: "visitFull_acct",
|
|
1337
|
+
value: function visitFull_acct(ctx) {
|
|
1338
|
+
return this.visitChildren(ctx);
|
|
1339
|
+
}
|
|
1340
|
+
|
|
1341
|
+
// Visit a parse tree produced by SnowflakeParser#integration_type_name.
|
|
1342
|
+
}, {
|
|
1343
|
+
key: "visitIntegration_type_name",
|
|
1344
|
+
value: function visitIntegration_type_name(ctx) {
|
|
1345
|
+
return this.visitChildren(ctx);
|
|
1346
|
+
}
|
|
1347
|
+
|
|
1348
|
+
// Visit a parse tree produced by SnowflakeParser#create_failover_group.
|
|
1349
|
+
}, {
|
|
1350
|
+
key: "visitCreate_failover_group",
|
|
1351
|
+
value: function visitCreate_failover_group(ctx) {
|
|
1352
|
+
return this.visitChildren(ctx);
|
|
1353
|
+
}
|
|
1354
|
+
|
|
1355
|
+
// Visit a parse tree produced by SnowflakeParser#type_fileformat.
|
|
1356
|
+
}, {
|
|
1357
|
+
key: "visitType_fileformat",
|
|
1358
|
+
value: function visitType_fileformat(ctx) {
|
|
1359
|
+
return this.visitChildren(ctx);
|
|
1360
|
+
}
|
|
1361
|
+
|
|
1362
|
+
// Visit a parse tree produced by SnowflakeParser#create_file_format.
|
|
1363
|
+
}, {
|
|
1364
|
+
key: "visitCreate_file_format",
|
|
1365
|
+
value: function visitCreate_file_format(ctx) {
|
|
1366
|
+
return this.visitChildren(ctx);
|
|
1367
|
+
}
|
|
1368
|
+
|
|
1369
|
+
// Visit a parse tree produced by SnowflakeParser#arg_decl.
|
|
1370
|
+
}, {
|
|
1371
|
+
key: "visitArg_decl",
|
|
1372
|
+
value: function visitArg_decl(ctx) {
|
|
1373
|
+
return this.visitChildren(ctx);
|
|
1374
|
+
}
|
|
1375
|
+
|
|
1376
|
+
// Visit a parse tree produced by SnowflakeParser#arg_default_value_clause.
|
|
1377
|
+
}, {
|
|
1378
|
+
key: "visitArg_default_value_clause",
|
|
1379
|
+
value: function visitArg_default_value_clause(ctx) {
|
|
1380
|
+
return this.visitChildren(ctx);
|
|
1381
|
+
}
|
|
1382
|
+
|
|
1383
|
+
// Visit a parse tree produced by SnowflakeParser#col_decl.
|
|
1384
|
+
}, {
|
|
1385
|
+
key: "visitCol_decl",
|
|
1386
|
+
value: function visitCol_decl(ctx) {
|
|
1387
|
+
return this.visitChildren(ctx);
|
|
1388
|
+
}
|
|
1389
|
+
|
|
1390
|
+
// Visit a parse tree produced by SnowflakeParser#virtual_column_decl.
|
|
1391
|
+
}, {
|
|
1392
|
+
key: "visitVirtual_column_decl",
|
|
1393
|
+
value: function visitVirtual_column_decl(ctx) {
|
|
1394
|
+
return this.visitChildren(ctx);
|
|
1395
|
+
}
|
|
1396
|
+
|
|
1397
|
+
// Visit a parse tree produced by SnowflakeParser#function_definition.
|
|
1398
|
+
}, {
|
|
1399
|
+
key: "visitFunction_definition",
|
|
1400
|
+
value: function visitFunction_definition(ctx) {
|
|
1401
|
+
return this.visitChildren(ctx);
|
|
1402
|
+
}
|
|
1403
|
+
|
|
1404
|
+
// Visit a parse tree produced by SnowflakeParser#create_function.
|
|
1405
|
+
}, {
|
|
1406
|
+
key: "visitCreate_function",
|
|
1407
|
+
value: function visitCreate_function(ctx) {
|
|
1408
|
+
return this.visitChildren(ctx);
|
|
1409
|
+
}
|
|
1410
|
+
|
|
1411
|
+
// Visit a parse tree produced by SnowflakeParser#create_managed_account.
|
|
1412
|
+
}, {
|
|
1413
|
+
key: "visitCreate_managed_account",
|
|
1414
|
+
value: function visitCreate_managed_account(ctx) {
|
|
1415
|
+
return this.visitChildren(ctx);
|
|
1416
|
+
}
|
|
1417
|
+
|
|
1418
|
+
// Visit a parse tree produced by SnowflakeParser#create_masking_policy.
|
|
1419
|
+
}, {
|
|
1420
|
+
key: "visitCreate_masking_policy",
|
|
1421
|
+
value: function visitCreate_masking_policy(ctx) {
|
|
1422
|
+
return this.visitChildren(ctx);
|
|
1423
|
+
}
|
|
1424
|
+
|
|
1425
|
+
// Visit a parse tree produced by SnowflakeParser#tag_decl.
|
|
1426
|
+
}, {
|
|
1427
|
+
key: "visitTag_decl",
|
|
1428
|
+
value: function visitTag_decl(ctx) {
|
|
1429
|
+
return this.visitChildren(ctx);
|
|
1430
|
+
}
|
|
1431
|
+
|
|
1432
|
+
// Visit a parse tree produced by SnowflakeParser#column_list_in_parentheses.
|
|
1433
|
+
}, {
|
|
1434
|
+
key: "visitColumn_list_in_parentheses",
|
|
1435
|
+
value: function visitColumn_list_in_parentheses(ctx) {
|
|
1436
|
+
return this.visitChildren(ctx);
|
|
1437
|
+
}
|
|
1438
|
+
|
|
1439
|
+
// Visit a parse tree produced by SnowflakeParser#create_materialized_view.
|
|
1440
|
+
}, {
|
|
1441
|
+
key: "visitCreate_materialized_view",
|
|
1442
|
+
value: function visitCreate_materialized_view(ctx) {
|
|
1443
|
+
return this.visitChildren(ctx);
|
|
1444
|
+
}
|
|
1445
|
+
|
|
1446
|
+
// Visit a parse tree produced by SnowflakeParser#create_network_policy.
|
|
1447
|
+
}, {
|
|
1448
|
+
key: "visitCreate_network_policy",
|
|
1449
|
+
value: function visitCreate_network_policy(ctx) {
|
|
1450
|
+
return this.visitChildren(ctx);
|
|
1451
|
+
}
|
|
1452
|
+
|
|
1453
|
+
// Visit a parse tree produced by SnowflakeParser#cloud_provider_params_auto.
|
|
1454
|
+
}, {
|
|
1455
|
+
key: "visitCloud_provider_params_auto",
|
|
1456
|
+
value: function visitCloud_provider_params_auto(ctx) {
|
|
1457
|
+
return this.visitChildren(ctx);
|
|
1458
|
+
}
|
|
1459
|
+
|
|
1460
|
+
// Visit a parse tree produced by SnowflakeParser#cloud_provider_params_push.
|
|
1461
|
+
}, {
|
|
1462
|
+
key: "visitCloud_provider_params_push",
|
|
1463
|
+
value: function visitCloud_provider_params_push(ctx) {
|
|
1464
|
+
return this.visitChildren(ctx);
|
|
1465
|
+
}
|
|
1466
|
+
|
|
1467
|
+
// Visit a parse tree produced by SnowflakeParser#create_notification_integration.
|
|
1468
|
+
}, {
|
|
1469
|
+
key: "visitCreate_notification_integration",
|
|
1470
|
+
value: function visitCreate_notification_integration(ctx) {
|
|
1471
|
+
return this.visitChildren(ctx);
|
|
1472
|
+
}
|
|
1473
|
+
|
|
1474
|
+
// Visit a parse tree produced by SnowflakeParser#create_pipe.
|
|
1475
|
+
}, {
|
|
1476
|
+
key: "visitCreate_pipe",
|
|
1477
|
+
value: function visitCreate_pipe(ctx) {
|
|
1478
|
+
return this.visitChildren(ctx);
|
|
1479
|
+
}
|
|
1480
|
+
|
|
1481
|
+
// Visit a parse tree produced by SnowflakeParser#caller_owner.
|
|
1482
|
+
}, {
|
|
1483
|
+
key: "visitCaller_owner",
|
|
1484
|
+
value: function visitCaller_owner(ctx) {
|
|
1485
|
+
return this.visitChildren(ctx);
|
|
1486
|
+
}
|
|
1487
|
+
|
|
1488
|
+
// Visit a parse tree produced by SnowflakeParser#executa_as.
|
|
1489
|
+
}, {
|
|
1490
|
+
key: "visitExecuta_as",
|
|
1491
|
+
value: function visitExecuta_as(ctx) {
|
|
1492
|
+
return this.visitChildren(ctx);
|
|
1493
|
+
}
|
|
1494
|
+
|
|
1495
|
+
// Visit a parse tree produced by SnowflakeParser#procedure_definition.
|
|
1496
|
+
}, {
|
|
1497
|
+
key: "visitProcedure_definition",
|
|
1498
|
+
value: function visitProcedure_definition(ctx) {
|
|
1499
|
+
return this.visitChildren(ctx);
|
|
1500
|
+
}
|
|
1501
|
+
|
|
1502
|
+
// Visit a parse tree produced by SnowflakeParser#not_null.
|
|
1503
|
+
}, {
|
|
1504
|
+
key: "visitNot_null",
|
|
1505
|
+
value: function visitNot_null(ctx) {
|
|
1506
|
+
return this.visitChildren(ctx);
|
|
1507
|
+
}
|
|
1508
|
+
|
|
1509
|
+
// Visit a parse tree produced by SnowflakeParser#create_procedure.
|
|
1510
|
+
}, {
|
|
1511
|
+
key: "visitCreate_procedure",
|
|
1512
|
+
value: function visitCreate_procedure(ctx) {
|
|
1513
|
+
return this.visitChildren(ctx);
|
|
1514
|
+
}
|
|
1515
|
+
|
|
1516
|
+
// Visit a parse tree produced by SnowflakeParser#create_replication_group.
|
|
1517
|
+
}, {
|
|
1518
|
+
key: "visitCreate_replication_group",
|
|
1519
|
+
value: function visitCreate_replication_group(ctx) {
|
|
1520
|
+
return this.visitChildren(ctx);
|
|
1521
|
+
}
|
|
1522
|
+
|
|
1523
|
+
// Visit a parse tree produced by SnowflakeParser#create_resource_monitor.
|
|
1524
|
+
}, {
|
|
1525
|
+
key: "visitCreate_resource_monitor",
|
|
1526
|
+
value: function visitCreate_resource_monitor(ctx) {
|
|
1527
|
+
return this.visitChildren(ctx);
|
|
1528
|
+
}
|
|
1529
|
+
|
|
1530
|
+
// Visit a parse tree produced by SnowflakeParser#create_role.
|
|
1531
|
+
}, {
|
|
1532
|
+
key: "visitCreate_role",
|
|
1533
|
+
value: function visitCreate_role(ctx) {
|
|
1534
|
+
return this.visitChildren(ctx);
|
|
1535
|
+
}
|
|
1536
|
+
|
|
1537
|
+
// Visit a parse tree produced by SnowflakeParser#create_row_access_policy.
|
|
1538
|
+
}, {
|
|
1539
|
+
key: "visitCreate_row_access_policy",
|
|
1540
|
+
value: function visitCreate_row_access_policy(ctx) {
|
|
1541
|
+
return this.visitChildren(ctx);
|
|
1542
|
+
}
|
|
1543
|
+
|
|
1544
|
+
// Visit a parse tree produced by SnowflakeParser#create_schema.
|
|
1545
|
+
}, {
|
|
1546
|
+
key: "visitCreate_schema",
|
|
1547
|
+
value: function visitCreate_schema(ctx) {
|
|
1548
|
+
return this.visitChildren(ctx);
|
|
1549
|
+
}
|
|
1550
|
+
|
|
1551
|
+
// Visit a parse tree produced by SnowflakeParser#create_security_integration_external_oauth.
|
|
1552
|
+
}, {
|
|
1553
|
+
key: "visitCreate_security_integration_external_oauth",
|
|
1554
|
+
value: function visitCreate_security_integration_external_oauth(ctx) {
|
|
1555
|
+
return this.visitChildren(ctx);
|
|
1556
|
+
}
|
|
1557
|
+
|
|
1558
|
+
// Visit a parse tree produced by SnowflakeParser#implicit_none.
|
|
1559
|
+
}, {
|
|
1560
|
+
key: "visitImplicit_none",
|
|
1561
|
+
value: function visitImplicit_none(ctx) {
|
|
1562
|
+
return this.visitChildren(ctx);
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1565
|
+
// Visit a parse tree produced by SnowflakeParser#create_security_integration_snowflake_oauth.
|
|
1566
|
+
}, {
|
|
1567
|
+
key: "visitCreate_security_integration_snowflake_oauth",
|
|
1568
|
+
value: function visitCreate_security_integration_snowflake_oauth(ctx) {
|
|
1569
|
+
return this.visitChildren(ctx);
|
|
1570
|
+
}
|
|
1571
|
+
|
|
1572
|
+
// Visit a parse tree produced by SnowflakeParser#create_security_integration_saml2.
|
|
1573
|
+
}, {
|
|
1574
|
+
key: "visitCreate_security_integration_saml2",
|
|
1575
|
+
value: function visitCreate_security_integration_saml2(ctx) {
|
|
1576
|
+
return this.visitChildren(ctx);
|
|
1577
|
+
}
|
|
1578
|
+
|
|
1579
|
+
// Visit a parse tree produced by SnowflakeParser#create_security_integration_scim.
|
|
1580
|
+
}, {
|
|
1581
|
+
key: "visitCreate_security_integration_scim",
|
|
1582
|
+
value: function visitCreate_security_integration_scim(ctx) {
|
|
1583
|
+
return this.visitChildren(ctx);
|
|
1584
|
+
}
|
|
1585
|
+
|
|
1586
|
+
// Visit a parse tree produced by SnowflakeParser#network_policy.
|
|
1587
|
+
}, {
|
|
1588
|
+
key: "visitNetwork_policy",
|
|
1589
|
+
value: function visitNetwork_policy(ctx) {
|
|
1590
|
+
return this.visitChildren(ctx);
|
|
1591
|
+
}
|
|
1592
|
+
|
|
1593
|
+
// Visit a parse tree produced by SnowflakeParser#partner_application.
|
|
1594
|
+
}, {
|
|
1595
|
+
key: "visitPartner_application",
|
|
1596
|
+
value: function visitPartner_application(ctx) {
|
|
1597
|
+
return this.visitChildren(ctx);
|
|
1598
|
+
}
|
|
1599
|
+
|
|
1600
|
+
// Visit a parse tree produced by SnowflakeParser#start_with.
|
|
1601
|
+
}, {
|
|
1602
|
+
key: "visitStart_with",
|
|
1603
|
+
value: function visitStart_with(ctx) {
|
|
1604
|
+
return this.visitChildren(ctx);
|
|
1605
|
+
}
|
|
1606
|
+
|
|
1607
|
+
// Visit a parse tree produced by SnowflakeParser#increment_by.
|
|
1608
|
+
}, {
|
|
1609
|
+
key: "visitIncrement_by",
|
|
1610
|
+
value: function visitIncrement_by(ctx) {
|
|
1611
|
+
return this.visitChildren(ctx);
|
|
1612
|
+
}
|
|
1613
|
+
|
|
1614
|
+
// Visit a parse tree produced by SnowflakeParser#create_sequence.
|
|
1615
|
+
}, {
|
|
1616
|
+
key: "visitCreate_sequence",
|
|
1617
|
+
value: function visitCreate_sequence(ctx) {
|
|
1618
|
+
return this.visitChildren(ctx);
|
|
1619
|
+
}
|
|
1620
|
+
|
|
1621
|
+
// Visit a parse tree produced by SnowflakeParser#create_session_policy.
|
|
1622
|
+
}, {
|
|
1623
|
+
key: "visitCreate_session_policy",
|
|
1624
|
+
value: function visitCreate_session_policy(ctx) {
|
|
1625
|
+
return this.visitChildren(ctx);
|
|
1626
|
+
}
|
|
1627
|
+
|
|
1628
|
+
// Visit a parse tree produced by SnowflakeParser#session_policy_params.
|
|
1629
|
+
}, {
|
|
1630
|
+
key: "visitSession_policy_params",
|
|
1631
|
+
value: function visitSession_policy_params(ctx) {
|
|
1632
|
+
return this.visitChildren(ctx);
|
|
1633
|
+
}
|
|
1634
|
+
|
|
1635
|
+
// Visit a parse tree produced by SnowflakeParser#session_policy_param_name.
|
|
1636
|
+
}, {
|
|
1637
|
+
key: "visitSession_policy_param_name",
|
|
1638
|
+
value: function visitSession_policy_param_name(ctx) {
|
|
1639
|
+
return this.visitChildren(ctx);
|
|
1640
|
+
}
|
|
1641
|
+
|
|
1642
|
+
// Visit a parse tree produced by SnowflakeParser#create_password_policy.
|
|
1643
|
+
}, {
|
|
1644
|
+
key: "visitCreate_password_policy",
|
|
1645
|
+
value: function visitCreate_password_policy(ctx) {
|
|
1646
|
+
return this.visitChildren(ctx);
|
|
1647
|
+
}
|
|
1648
|
+
|
|
1649
|
+
// Visit a parse tree produced by SnowflakeParser#password_policy_params.
|
|
1650
|
+
}, {
|
|
1651
|
+
key: "visitPassword_policy_params",
|
|
1652
|
+
value: function visitPassword_policy_params(ctx) {
|
|
1653
|
+
return this.visitChildren(ctx);
|
|
1654
|
+
}
|
|
1655
|
+
|
|
1656
|
+
// Visit a parse tree produced by SnowflakeParser#password_policy_param_name.
|
|
1657
|
+
}, {
|
|
1658
|
+
key: "visitPassword_policy_param_name",
|
|
1659
|
+
value: function visitPassword_policy_param_name(ctx) {
|
|
1660
|
+
return this.visitChildren(ctx);
|
|
1661
|
+
}
|
|
1662
|
+
|
|
1663
|
+
// Visit a parse tree produced by SnowflakeParser#create_share.
|
|
1664
|
+
}, {
|
|
1665
|
+
key: "visitCreate_share",
|
|
1666
|
+
value: function visitCreate_share(ctx) {
|
|
1667
|
+
return this.visitChildren(ctx);
|
|
1668
|
+
}
|
|
1669
|
+
|
|
1670
|
+
// Visit a parse tree produced by SnowflakeParser#character.
|
|
1671
|
+
}, {
|
|
1672
|
+
key: "visitCharacter",
|
|
1673
|
+
value: function visitCharacter(ctx) {
|
|
1674
|
+
return this.visitChildren(ctx);
|
|
1675
|
+
}
|
|
1676
|
+
|
|
1677
|
+
// Visit a parse tree produced by SnowflakeParser#format_type_options.
|
|
1678
|
+
}, {
|
|
1679
|
+
key: "visitFormat_type_options",
|
|
1680
|
+
value: function visitFormat_type_options(ctx) {
|
|
1681
|
+
return this.visitChildren(ctx);
|
|
1682
|
+
}
|
|
1683
|
+
|
|
1684
|
+
// Visit a parse tree produced by SnowflakeParser#copy_options.
|
|
1685
|
+
}, {
|
|
1686
|
+
key: "visitCopy_options",
|
|
1687
|
+
value: function visitCopy_options(ctx) {
|
|
1688
|
+
return this.visitChildren(ctx);
|
|
1689
|
+
}
|
|
1690
|
+
|
|
1691
|
+
// Visit a parse tree produced by SnowflakeParser#stage_encryption_opts_internal.
|
|
1692
|
+
}, {
|
|
1693
|
+
key: "visitStage_encryption_opts_internal",
|
|
1694
|
+
value: function visitStage_encryption_opts_internal(ctx) {
|
|
1695
|
+
return this.visitChildren(ctx);
|
|
1696
|
+
}
|
|
1697
|
+
|
|
1698
|
+
// Visit a parse tree produced by SnowflakeParser#stage_type.
|
|
1699
|
+
}, {
|
|
1700
|
+
key: "visitStage_type",
|
|
1701
|
+
value: function visitStage_type(ctx) {
|
|
1702
|
+
return this.visitChildren(ctx);
|
|
1703
|
+
}
|
|
1704
|
+
|
|
1705
|
+
// Visit a parse tree produced by SnowflakeParser#stage_master_key.
|
|
1706
|
+
}, {
|
|
1707
|
+
key: "visitStage_master_key",
|
|
1708
|
+
value: function visitStage_master_key(ctx) {
|
|
1709
|
+
return this.visitChildren(ctx);
|
|
1710
|
+
}
|
|
1711
|
+
|
|
1712
|
+
// Visit a parse tree produced by SnowflakeParser#stage_kms_key.
|
|
1713
|
+
}, {
|
|
1714
|
+
key: "visitStage_kms_key",
|
|
1715
|
+
value: function visitStage_kms_key(ctx) {
|
|
1716
|
+
return this.visitChildren(ctx);
|
|
1717
|
+
}
|
|
1718
|
+
|
|
1719
|
+
// Visit a parse tree produced by SnowflakeParser#stage_encryption_opts_aws.
|
|
1720
|
+
}, {
|
|
1721
|
+
key: "visitStage_encryption_opts_aws",
|
|
1722
|
+
value: function visitStage_encryption_opts_aws(ctx) {
|
|
1723
|
+
return this.visitChildren(ctx);
|
|
1724
|
+
}
|
|
1725
|
+
|
|
1726
|
+
// Visit a parse tree produced by SnowflakeParser#aws_token.
|
|
1727
|
+
}, {
|
|
1728
|
+
key: "visitAws_token",
|
|
1729
|
+
value: function visitAws_token(ctx) {
|
|
1730
|
+
return this.visitChildren(ctx);
|
|
1731
|
+
}
|
|
1732
|
+
|
|
1733
|
+
// Visit a parse tree produced by SnowflakeParser#aws_key_id.
|
|
1734
|
+
}, {
|
|
1735
|
+
key: "visitAws_key_id",
|
|
1736
|
+
value: function visitAws_key_id(ctx) {
|
|
1737
|
+
return this.visitChildren(ctx);
|
|
1738
|
+
}
|
|
1739
|
+
|
|
1740
|
+
// Visit a parse tree produced by SnowflakeParser#aws_secret_key.
|
|
1741
|
+
}, {
|
|
1742
|
+
key: "visitAws_secret_key",
|
|
1743
|
+
value: function visitAws_secret_key(ctx) {
|
|
1744
|
+
return this.visitChildren(ctx);
|
|
1745
|
+
}
|
|
1746
|
+
|
|
1747
|
+
// Visit a parse tree produced by SnowflakeParser#aws_role.
|
|
1748
|
+
}, {
|
|
1749
|
+
key: "visitAws_role",
|
|
1750
|
+
value: function visitAws_role(ctx) {
|
|
1751
|
+
return this.visitChildren(ctx);
|
|
1752
|
+
}
|
|
1753
|
+
|
|
1754
|
+
// Visit a parse tree produced by SnowflakeParser#azure_encryption_value.
|
|
1755
|
+
}, {
|
|
1756
|
+
key: "visitAzure_encryption_value",
|
|
1757
|
+
value: function visitAzure_encryption_value(ctx) {
|
|
1758
|
+
return this.visitChildren(ctx);
|
|
1759
|
+
}
|
|
1760
|
+
|
|
1761
|
+
// Visit a parse tree produced by SnowflakeParser#stage_encryption_opts_az.
|
|
1762
|
+
}, {
|
|
1763
|
+
key: "visitStage_encryption_opts_az",
|
|
1764
|
+
value: function visitStage_encryption_opts_az(ctx) {
|
|
1765
|
+
return this.visitChildren(ctx);
|
|
1766
|
+
}
|
|
1767
|
+
|
|
1768
|
+
// Visit a parse tree produced by SnowflakeParser#storage_integration_eq_id.
|
|
1769
|
+
}, {
|
|
1770
|
+
key: "visitStorage_integration_eq_id",
|
|
1771
|
+
value: function visitStorage_integration_eq_id(ctx) {
|
|
1772
|
+
return this.visitChildren(ctx);
|
|
1773
|
+
}
|
|
1774
|
+
|
|
1775
|
+
// Visit a parse tree produced by SnowflakeParser#az_credential_or_storage_integration.
|
|
1776
|
+
}, {
|
|
1777
|
+
key: "visitAz_credential_or_storage_integration",
|
|
1778
|
+
value: function visitAz_credential_or_storage_integration(ctx) {
|
|
1779
|
+
return this.visitChildren(ctx);
|
|
1780
|
+
}
|
|
1781
|
+
|
|
1782
|
+
// Visit a parse tree produced by SnowflakeParser#gcp_encryption_value.
|
|
1783
|
+
}, {
|
|
1784
|
+
key: "visitGcp_encryption_value",
|
|
1785
|
+
value: function visitGcp_encryption_value(ctx) {
|
|
1786
|
+
return this.visitChildren(ctx);
|
|
1787
|
+
}
|
|
1788
|
+
|
|
1789
|
+
// Visit a parse tree produced by SnowflakeParser#stage_encryption_opts_gcp.
|
|
1790
|
+
}, {
|
|
1791
|
+
key: "visitStage_encryption_opts_gcp",
|
|
1792
|
+
value: function visitStage_encryption_opts_gcp(ctx) {
|
|
1793
|
+
return this.visitChildren(ctx);
|
|
1794
|
+
}
|
|
1795
|
+
|
|
1796
|
+
// Visit a parse tree produced by SnowflakeParser#aws_credential_or_storage_integration.
|
|
1797
|
+
}, {
|
|
1798
|
+
key: "visitAws_credential_or_storage_integration",
|
|
1799
|
+
value: function visitAws_credential_or_storage_integration(ctx) {
|
|
1800
|
+
return this.visitChildren(ctx);
|
|
1801
|
+
}
|
|
1802
|
+
|
|
1803
|
+
// Visit a parse tree produced by SnowflakeParser#external_stage_params.
|
|
1804
|
+
}, {
|
|
1805
|
+
key: "visitExternal_stage_params",
|
|
1806
|
+
value: function visitExternal_stage_params(ctx) {
|
|
1807
|
+
return this.visitChildren(ctx);
|
|
1808
|
+
}
|
|
1809
|
+
|
|
1810
|
+
// Visit a parse tree produced by SnowflakeParser#true_false.
|
|
1811
|
+
}, {
|
|
1812
|
+
key: "visitTrue_false",
|
|
1813
|
+
value: function visitTrue_false(ctx) {
|
|
1814
|
+
return this.visitChildren(ctx);
|
|
1815
|
+
}
|
|
1816
|
+
|
|
1817
|
+
// Visit a parse tree produced by SnowflakeParser#enable.
|
|
1818
|
+
}, {
|
|
1819
|
+
key: "visitEnable",
|
|
1820
|
+
value: function visitEnable(ctx) {
|
|
1821
|
+
return this.visitChildren(ctx);
|
|
1822
|
+
}
|
|
1823
|
+
|
|
1824
|
+
// Visit a parse tree produced by SnowflakeParser#refresh_on_create.
|
|
1825
|
+
}, {
|
|
1826
|
+
key: "visitRefresh_on_create",
|
|
1827
|
+
value: function visitRefresh_on_create(ctx) {
|
|
1828
|
+
return this.visitChildren(ctx);
|
|
1829
|
+
}
|
|
1830
|
+
|
|
1831
|
+
// Visit a parse tree produced by SnowflakeParser#auto_refresh.
|
|
1832
|
+
}, {
|
|
1833
|
+
key: "visitAuto_refresh",
|
|
1834
|
+
value: function visitAuto_refresh(ctx) {
|
|
1835
|
+
return this.visitChildren(ctx);
|
|
1836
|
+
}
|
|
1837
|
+
|
|
1838
|
+
// Visit a parse tree produced by SnowflakeParser#notification_integration.
|
|
1839
|
+
}, {
|
|
1840
|
+
key: "visitNotification_integration",
|
|
1841
|
+
value: function visitNotification_integration(ctx) {
|
|
1842
|
+
return this.visitChildren(ctx);
|
|
1843
|
+
}
|
|
1844
|
+
|
|
1845
|
+
// Visit a parse tree produced by SnowflakeParser#directory_table_internal_params.
|
|
1846
|
+
}, {
|
|
1847
|
+
key: "visitDirectory_table_internal_params",
|
|
1848
|
+
value: function visitDirectory_table_internal_params(ctx) {
|
|
1849
|
+
return this.visitChildren(ctx);
|
|
1850
|
+
}
|
|
1851
|
+
|
|
1852
|
+
// Visit a parse tree produced by SnowflakeParser#directory_table_external_params.
|
|
1853
|
+
}, {
|
|
1854
|
+
key: "visitDirectory_table_external_params",
|
|
1855
|
+
value: function visitDirectory_table_external_params(ctx) {
|
|
1856
|
+
return this.visitChildren(ctx);
|
|
1857
|
+
}
|
|
1858
|
+
|
|
1859
|
+
// Visit a parse tree produced by SnowflakeParser#create_stage.
|
|
1860
|
+
}, {
|
|
1861
|
+
key: "visitCreate_stage",
|
|
1862
|
+
value: function visitCreate_stage(ctx) {
|
|
1863
|
+
return this.visitChildren(ctx);
|
|
1864
|
+
}
|
|
1865
|
+
|
|
1866
|
+
// Visit a parse tree produced by SnowflakeParser#alter_stage.
|
|
1867
|
+
}, {
|
|
1868
|
+
key: "visitAlter_stage",
|
|
1869
|
+
value: function visitAlter_stage(ctx) {
|
|
1870
|
+
return this.visitChildren(ctx);
|
|
1871
|
+
}
|
|
1872
|
+
|
|
1873
|
+
// Visit a parse tree produced by SnowflakeParser#drop_stage.
|
|
1874
|
+
}, {
|
|
1875
|
+
key: "visitDrop_stage",
|
|
1876
|
+
value: function visitDrop_stage(ctx) {
|
|
1877
|
+
return this.visitChildren(ctx);
|
|
1878
|
+
}
|
|
1879
|
+
|
|
1880
|
+
// Visit a parse tree produced by SnowflakeParser#describe_stage.
|
|
1881
|
+
}, {
|
|
1882
|
+
key: "visitDescribe_stage",
|
|
1883
|
+
value: function visitDescribe_stage(ctx) {
|
|
1884
|
+
return this.visitChildren(ctx);
|
|
1885
|
+
}
|
|
1886
|
+
|
|
1887
|
+
// Visit a parse tree produced by SnowflakeParser#show_stages.
|
|
1888
|
+
}, {
|
|
1889
|
+
key: "visitShow_stages",
|
|
1890
|
+
value: function visitShow_stages(ctx) {
|
|
1891
|
+
return this.visitChildren(ctx);
|
|
1892
|
+
}
|
|
1893
|
+
|
|
1894
|
+
// Visit a parse tree produced by SnowflakeParser#cloud_provider_params.
|
|
1895
|
+
}, {
|
|
1896
|
+
key: "visitCloud_provider_params",
|
|
1897
|
+
value: function visitCloud_provider_params(ctx) {
|
|
1898
|
+
return this.visitChildren(ctx);
|
|
1899
|
+
}
|
|
1900
|
+
|
|
1901
|
+
// Visit a parse tree produced by SnowflakeParser#cloud_provider_params2.
|
|
1902
|
+
}, {
|
|
1903
|
+
key: "visitCloud_provider_params2",
|
|
1904
|
+
value: function visitCloud_provider_params2(ctx) {
|
|
1905
|
+
return this.visitChildren(ctx);
|
|
1906
|
+
}
|
|
1907
|
+
|
|
1908
|
+
// Visit a parse tree produced by SnowflakeParser#cloud_provider_params3.
|
|
1909
|
+
}, {
|
|
1910
|
+
key: "visitCloud_provider_params3",
|
|
1911
|
+
value: function visitCloud_provider_params3(ctx) {
|
|
1912
|
+
return this.visitChildren(ctx);
|
|
1913
|
+
}
|
|
1914
|
+
|
|
1915
|
+
// Visit a parse tree produced by SnowflakeParser#create_storage_integration.
|
|
1916
|
+
}, {
|
|
1917
|
+
key: "visitCreate_storage_integration",
|
|
1918
|
+
value: function visitCreate_storage_integration(ctx) {
|
|
1919
|
+
return this.visitChildren(ctx);
|
|
1920
|
+
}
|
|
1921
|
+
|
|
1922
|
+
// Visit a parse tree produced by SnowflakeParser#copy_grants.
|
|
1923
|
+
}, {
|
|
1924
|
+
key: "visitCopy_grants",
|
|
1925
|
+
value: function visitCopy_grants(ctx) {
|
|
1926
|
+
return this.visitChildren(ctx);
|
|
1927
|
+
}
|
|
1928
|
+
|
|
1929
|
+
// Visit a parse tree produced by SnowflakeParser#append_only.
|
|
1930
|
+
}, {
|
|
1931
|
+
key: "visitAppend_only",
|
|
1932
|
+
value: function visitAppend_only(ctx) {
|
|
1933
|
+
return this.visitChildren(ctx);
|
|
1934
|
+
}
|
|
1935
|
+
|
|
1936
|
+
// Visit a parse tree produced by SnowflakeParser#insert_only.
|
|
1937
|
+
}, {
|
|
1938
|
+
key: "visitInsert_only",
|
|
1939
|
+
value: function visitInsert_only(ctx) {
|
|
1940
|
+
return this.visitChildren(ctx);
|
|
1941
|
+
}
|
|
1942
|
+
|
|
1943
|
+
// Visit a parse tree produced by SnowflakeParser#show_initial_rows.
|
|
1944
|
+
}, {
|
|
1945
|
+
key: "visitShow_initial_rows",
|
|
1946
|
+
value: function visitShow_initial_rows(ctx) {
|
|
1947
|
+
return this.visitChildren(ctx);
|
|
1948
|
+
}
|
|
1949
|
+
|
|
1950
|
+
// Visit a parse tree produced by SnowflakeParser#stream_time.
|
|
1951
|
+
}, {
|
|
1952
|
+
key: "visitStream_time",
|
|
1953
|
+
value: function visitStream_time(ctx) {
|
|
1954
|
+
return this.visitChildren(ctx);
|
|
1955
|
+
}
|
|
1956
|
+
|
|
1957
|
+
// Visit a parse tree produced by SnowflakeParser#create_stream.
|
|
1958
|
+
}, {
|
|
1959
|
+
key: "visitCreate_stream",
|
|
1960
|
+
value: function visitCreate_stream(ctx) {
|
|
1961
|
+
return this.visitChildren(ctx);
|
|
1962
|
+
}
|
|
1963
|
+
|
|
1964
|
+
// Visit a parse tree produced by SnowflakeParser#temporary.
|
|
1965
|
+
}, {
|
|
1966
|
+
key: "visitTemporary",
|
|
1967
|
+
value: function visitTemporary(ctx) {
|
|
1968
|
+
return this.visitChildren(ctx);
|
|
1969
|
+
}
|
|
1970
|
+
|
|
1971
|
+
// Visit a parse tree produced by SnowflakeParser#table_type.
|
|
1972
|
+
}, {
|
|
1973
|
+
key: "visitTable_type",
|
|
1974
|
+
value: function visitTable_type(ctx) {
|
|
1975
|
+
return this.visitChildren(ctx);
|
|
1976
|
+
}
|
|
1977
|
+
|
|
1978
|
+
// Visit a parse tree produced by SnowflakeParser#with_tags.
|
|
1979
|
+
}, {
|
|
1980
|
+
key: "visitWith_tags",
|
|
1981
|
+
value: function visitWith_tags(ctx) {
|
|
1982
|
+
return this.visitChildren(ctx);
|
|
1983
|
+
}
|
|
1984
|
+
|
|
1985
|
+
// Visit a parse tree produced by SnowflakeParser#with_row_access_policy.
|
|
1986
|
+
}, {
|
|
1987
|
+
key: "visitWith_row_access_policy",
|
|
1988
|
+
value: function visitWith_row_access_policy(ctx) {
|
|
1989
|
+
return this.visitChildren(ctx);
|
|
1990
|
+
}
|
|
1991
|
+
|
|
1992
|
+
// Visit a parse tree produced by SnowflakeParser#cluster_by.
|
|
1993
|
+
}, {
|
|
1994
|
+
key: "visitCluster_by",
|
|
1995
|
+
value: function visitCluster_by(ctx) {
|
|
1996
|
+
return this.visitChildren(ctx);
|
|
1997
|
+
}
|
|
1998
|
+
|
|
1999
|
+
// Visit a parse tree produced by SnowflakeParser#change_tracking.
|
|
2000
|
+
}, {
|
|
2001
|
+
key: "visitChange_tracking",
|
|
2002
|
+
value: function visitChange_tracking(ctx) {
|
|
2003
|
+
return this.visitChildren(ctx);
|
|
2004
|
+
}
|
|
2005
|
+
|
|
2006
|
+
// Visit a parse tree produced by SnowflakeParser#with_masking_policy.
|
|
2007
|
+
}, {
|
|
2008
|
+
key: "visitWith_masking_policy",
|
|
2009
|
+
value: function visitWith_masking_policy(ctx) {
|
|
2010
|
+
return this.visitChildren(ctx);
|
|
2011
|
+
}
|
|
2012
|
+
|
|
2013
|
+
// Visit a parse tree produced by SnowflakeParser#collate.
|
|
2014
|
+
}, {
|
|
2015
|
+
key: "visitCollate",
|
|
2016
|
+
value: function visitCollate(ctx) {
|
|
2017
|
+
return this.visitChildren(ctx);
|
|
2018
|
+
}
|
|
2019
|
+
|
|
2020
|
+
// Visit a parse tree produced by SnowflakeParser#order_noorder.
|
|
2021
|
+
}, {
|
|
2022
|
+
key: "visitOrder_noorder",
|
|
2023
|
+
value: function visitOrder_noorder(ctx) {
|
|
2024
|
+
return this.visitChildren(ctx);
|
|
2025
|
+
}
|
|
2026
|
+
|
|
2027
|
+
// Visit a parse tree produced by SnowflakeParser#default_value.
|
|
2028
|
+
}, {
|
|
2029
|
+
key: "visitDefault_value",
|
|
2030
|
+
value: function visitDefault_value(ctx) {
|
|
2031
|
+
return this.visitChildren(ctx);
|
|
2032
|
+
}
|
|
2033
|
+
|
|
2034
|
+
// Visit a parse tree produced by SnowflakeParser#foreign_key.
|
|
2035
|
+
}, {
|
|
2036
|
+
key: "visitForeign_key",
|
|
2037
|
+
value: function visitForeign_key(ctx) {
|
|
2038
|
+
return this.visitChildren(ctx);
|
|
2039
|
+
}
|
|
2040
|
+
|
|
2041
|
+
// Visit a parse tree produced by SnowflakeParser#primary_key.
|
|
2042
|
+
}, {
|
|
2043
|
+
key: "visitPrimary_key",
|
|
2044
|
+
value: function visitPrimary_key(ctx) {
|
|
2045
|
+
return this.visitChildren(ctx);
|
|
2046
|
+
}
|
|
2047
|
+
|
|
2048
|
+
// Visit a parse tree produced by SnowflakeParser#out_of_line_constraint.
|
|
2049
|
+
}, {
|
|
2050
|
+
key: "visitOut_of_line_constraint",
|
|
2051
|
+
value: function visitOut_of_line_constraint(ctx) {
|
|
2052
|
+
return this.visitChildren(ctx);
|
|
2053
|
+
}
|
|
2054
|
+
|
|
2055
|
+
// Visit a parse tree produced by SnowflakeParser#full_col_decl.
|
|
2056
|
+
}, {
|
|
2057
|
+
key: "visitFull_col_decl",
|
|
2058
|
+
value: function visitFull_col_decl(ctx) {
|
|
2059
|
+
return this.visitChildren(ctx);
|
|
2060
|
+
}
|
|
2061
|
+
|
|
2062
|
+
// Visit a parse tree produced by SnowflakeParser#column_decl_item.
|
|
2063
|
+
}, {
|
|
2064
|
+
key: "visitColumn_decl_item",
|
|
2065
|
+
value: function visitColumn_decl_item(ctx) {
|
|
2066
|
+
return this.visitChildren(ctx);
|
|
2067
|
+
}
|
|
2068
|
+
|
|
2069
|
+
// Visit a parse tree produced by SnowflakeParser#column_decl_item_list.
|
|
2070
|
+
}, {
|
|
2071
|
+
key: "visitColumn_decl_item_list",
|
|
2072
|
+
value: function visitColumn_decl_item_list(ctx) {
|
|
2073
|
+
return this.visitChildren(ctx);
|
|
2074
|
+
}
|
|
2075
|
+
|
|
2076
|
+
// Visit a parse tree produced by SnowflakeParser#create_table.
|
|
2077
|
+
}, {
|
|
2078
|
+
key: "visitCreate_table",
|
|
2079
|
+
value: function visitCreate_table(ctx) {
|
|
2080
|
+
return this.visitChildren(ctx);
|
|
2081
|
+
}
|
|
2082
|
+
|
|
2083
|
+
// Visit a parse tree produced by SnowflakeParser#column_decl_item_list_paren.
|
|
2084
|
+
}, {
|
|
2085
|
+
key: "visitColumn_decl_item_list_paren",
|
|
2086
|
+
value: function visitColumn_decl_item_list_paren(ctx) {
|
|
2087
|
+
return this.visitChildren(ctx);
|
|
2088
|
+
}
|
|
2089
|
+
|
|
2090
|
+
// Visit a parse tree produced by SnowflakeParser#create_table_clause.
|
|
2091
|
+
}, {
|
|
2092
|
+
key: "visitCreate_table_clause",
|
|
2093
|
+
value: function visitCreate_table_clause(ctx) {
|
|
2094
|
+
return this.visitChildren(ctx);
|
|
2095
|
+
}
|
|
2096
|
+
|
|
2097
|
+
// Visit a parse tree produced by SnowflakeParser#create_table_as_select.
|
|
2098
|
+
}, {
|
|
2099
|
+
key: "visitCreate_table_as_select",
|
|
2100
|
+
value: function visitCreate_table_as_select(ctx) {
|
|
2101
|
+
return this.visitChildren(ctx);
|
|
2102
|
+
}
|
|
2103
|
+
|
|
2104
|
+
// Visit a parse tree produced by SnowflakeParser#create_table_like.
|
|
2105
|
+
}, {
|
|
2106
|
+
key: "visitCreate_table_like",
|
|
2107
|
+
value: function visitCreate_table_like(ctx) {
|
|
2108
|
+
return this.visitChildren(ctx);
|
|
2109
|
+
}
|
|
2110
|
+
|
|
2111
|
+
// Visit a parse tree produced by SnowflakeParser#create_tag.
|
|
2112
|
+
}, {
|
|
2113
|
+
key: "visitCreate_tag",
|
|
2114
|
+
value: function visitCreate_tag(ctx) {
|
|
2115
|
+
return this.visitChildren(ctx);
|
|
2116
|
+
}
|
|
2117
|
+
|
|
2118
|
+
// Visit a parse tree produced by SnowflakeParser#tag_allowed_values.
|
|
2119
|
+
}, {
|
|
2120
|
+
key: "visitTag_allowed_values",
|
|
2121
|
+
value: function visitTag_allowed_values(ctx) {
|
|
2122
|
+
return this.visitChildren(ctx);
|
|
2123
|
+
}
|
|
2124
|
+
|
|
2125
|
+
// Visit a parse tree produced by SnowflakeParser#session_parameter.
|
|
2126
|
+
}, {
|
|
2127
|
+
key: "visitSession_parameter",
|
|
2128
|
+
value: function visitSession_parameter(ctx) {
|
|
2129
|
+
return this.visitChildren(ctx);
|
|
2130
|
+
}
|
|
2131
|
+
|
|
2132
|
+
// Visit a parse tree produced by SnowflakeParser#session_parameter_list.
|
|
2133
|
+
}, {
|
|
2134
|
+
key: "visitSession_parameter_list",
|
|
2135
|
+
value: function visitSession_parameter_list(ctx) {
|
|
2136
|
+
return this.visitChildren(ctx);
|
|
2137
|
+
}
|
|
2138
|
+
|
|
2139
|
+
// Visit a parse tree produced by SnowflakeParser#session_params_list.
|
|
2140
|
+
}, {
|
|
2141
|
+
key: "visitSession_params_list",
|
|
2142
|
+
value: function visitSession_params_list(ctx) {
|
|
2143
|
+
return this.visitChildren(ctx);
|
|
2144
|
+
}
|
|
2145
|
+
|
|
2146
|
+
// Visit a parse tree produced by SnowflakeParser#create_task.
|
|
2147
|
+
}, {
|
|
2148
|
+
key: "visitCreate_task",
|
|
2149
|
+
value: function visitCreate_task(ctx) {
|
|
2150
|
+
return this.visitChildren(ctx);
|
|
2151
|
+
}
|
|
2152
|
+
|
|
2153
|
+
// Visit a parse tree produced by SnowflakeParser#task_parameters.
|
|
2154
|
+
}, {
|
|
2155
|
+
key: "visitTask_parameters",
|
|
2156
|
+
value: function visitTask_parameters(ctx) {
|
|
2157
|
+
return this.visitChildren(ctx);
|
|
2158
|
+
}
|
|
2159
|
+
|
|
2160
|
+
// Visit a parse tree produced by SnowflakeParser#task_compute.
|
|
2161
|
+
}, {
|
|
2162
|
+
key: "visitTask_compute",
|
|
2163
|
+
value: function visitTask_compute(ctx) {
|
|
2164
|
+
return this.visitChildren(ctx);
|
|
2165
|
+
}
|
|
2166
|
+
|
|
2167
|
+
// Visit a parse tree produced by SnowflakeParser#task_schedule.
|
|
2168
|
+
}, {
|
|
2169
|
+
key: "visitTask_schedule",
|
|
2170
|
+
value: function visitTask_schedule(ctx) {
|
|
2171
|
+
return this.visitChildren(ctx);
|
|
2172
|
+
}
|
|
2173
|
+
|
|
2174
|
+
// Visit a parse tree produced by SnowflakeParser#task_timeout.
|
|
2175
|
+
}, {
|
|
2176
|
+
key: "visitTask_timeout",
|
|
2177
|
+
value: function visitTask_timeout(ctx) {
|
|
2178
|
+
return this.visitChildren(ctx);
|
|
2179
|
+
}
|
|
2180
|
+
|
|
2181
|
+
// Visit a parse tree produced by SnowflakeParser#task_suspend_after_failure_number.
|
|
2182
|
+
}, {
|
|
2183
|
+
key: "visitTask_suspend_after_failure_number",
|
|
2184
|
+
value: function visitTask_suspend_after_failure_number(ctx) {
|
|
2185
|
+
return this.visitChildren(ctx);
|
|
2186
|
+
}
|
|
2187
|
+
|
|
2188
|
+
// Visit a parse tree produced by SnowflakeParser#task_error_integration.
|
|
2189
|
+
}, {
|
|
2190
|
+
key: "visitTask_error_integration",
|
|
2191
|
+
value: function visitTask_error_integration(ctx) {
|
|
2192
|
+
return this.visitChildren(ctx);
|
|
2193
|
+
}
|
|
2194
|
+
|
|
2195
|
+
// Visit a parse tree produced by SnowflakeParser#task_overlap.
|
|
2196
|
+
}, {
|
|
2197
|
+
key: "visitTask_overlap",
|
|
2198
|
+
value: function visitTask_overlap(ctx) {
|
|
2199
|
+
return this.visitChildren(ctx);
|
|
2200
|
+
}
|
|
2201
|
+
|
|
2202
|
+
// Visit a parse tree produced by SnowflakeParser#sql.
|
|
2203
|
+
}, {
|
|
2204
|
+
key: "visitSql",
|
|
2205
|
+
value: function visitSql(ctx) {
|
|
2206
|
+
return this.visitChildren(ctx);
|
|
2207
|
+
}
|
|
2208
|
+
|
|
2209
|
+
// Visit a parse tree produced by SnowflakeParser#call.
|
|
2210
|
+
}, {
|
|
2211
|
+
key: "visitCall",
|
|
2212
|
+
value: function visitCall(ctx) {
|
|
2213
|
+
return this.visitChildren(ctx);
|
|
2214
|
+
}
|
|
2215
|
+
|
|
2216
|
+
// Visit a parse tree produced by SnowflakeParser#create_user.
|
|
2217
|
+
}, {
|
|
2218
|
+
key: "visitCreate_user",
|
|
2219
|
+
value: function visitCreate_user(ctx) {
|
|
2220
|
+
return this.visitChildren(ctx);
|
|
2221
|
+
}
|
|
2222
|
+
|
|
2223
|
+
// Visit a parse tree produced by SnowflakeParser#view_col.
|
|
2224
|
+
}, {
|
|
2225
|
+
key: "visitView_col",
|
|
2226
|
+
value: function visitView_col(ctx) {
|
|
2227
|
+
return this.visitChildren(ctx);
|
|
2228
|
+
}
|
|
2229
|
+
|
|
2230
|
+
// Visit a parse tree produced by SnowflakeParser#create_view.
|
|
2231
|
+
}, {
|
|
2232
|
+
key: "visitCreate_view",
|
|
2233
|
+
value: function visitCreate_view(ctx) {
|
|
2234
|
+
return this.visitChildren(ctx);
|
|
2235
|
+
}
|
|
2236
|
+
|
|
2237
|
+
// Visit a parse tree produced by SnowflakeParser#create_warehouse.
|
|
2238
|
+
}, {
|
|
2239
|
+
key: "visitCreate_warehouse",
|
|
2240
|
+
value: function visitCreate_warehouse(ctx) {
|
|
2241
|
+
return this.visitChildren(ctx);
|
|
2242
|
+
}
|
|
2243
|
+
|
|
2244
|
+
// Visit a parse tree produced by SnowflakeParser#wh_common_size.
|
|
2245
|
+
}, {
|
|
2246
|
+
key: "visitWh_common_size",
|
|
2247
|
+
value: function visitWh_common_size(ctx) {
|
|
2248
|
+
return this.visitChildren(ctx);
|
|
2249
|
+
}
|
|
2250
|
+
|
|
2251
|
+
// Visit a parse tree produced by SnowflakeParser#wh_extra_size.
|
|
2252
|
+
}, {
|
|
2253
|
+
key: "visitWh_extra_size",
|
|
2254
|
+
value: function visitWh_extra_size(ctx) {
|
|
2255
|
+
return this.visitChildren(ctx);
|
|
2256
|
+
}
|
|
2257
|
+
|
|
2258
|
+
// Visit a parse tree produced by SnowflakeParser#wh_properties.
|
|
2259
|
+
}, {
|
|
2260
|
+
key: "visitWh_properties",
|
|
2261
|
+
value: function visitWh_properties(ctx) {
|
|
2262
|
+
return this.visitChildren(ctx);
|
|
2263
|
+
}
|
|
2264
|
+
|
|
2265
|
+
// Visit a parse tree produced by SnowflakeParser#wh_params.
|
|
2266
|
+
}, {
|
|
2267
|
+
key: "visitWh_params",
|
|
2268
|
+
value: function visitWh_params(ctx) {
|
|
2269
|
+
return this.visitChildren(ctx);
|
|
2270
|
+
}
|
|
2271
|
+
|
|
2272
|
+
// Visit a parse tree produced by SnowflakeParser#trigger_definition.
|
|
2273
|
+
}, {
|
|
2274
|
+
key: "visitTrigger_definition",
|
|
2275
|
+
value: function visitTrigger_definition(ctx) {
|
|
2276
|
+
return this.visitChildren(ctx);
|
|
2277
|
+
}
|
|
2278
|
+
|
|
2279
|
+
// Visit a parse tree produced by SnowflakeParser#object_type_name.
|
|
2280
|
+
}, {
|
|
2281
|
+
key: "visitObject_type_name",
|
|
2282
|
+
value: function visitObject_type_name(ctx) {
|
|
2283
|
+
return this.visitChildren(ctx);
|
|
2284
|
+
}
|
|
2285
|
+
|
|
2286
|
+
// Visit a parse tree produced by SnowflakeParser#object_type_plural.
|
|
2287
|
+
}, {
|
|
2288
|
+
key: "visitObject_type_plural",
|
|
2289
|
+
value: function visitObject_type_plural(ctx) {
|
|
2290
|
+
return this.visitChildren(ctx);
|
|
2291
|
+
}
|
|
2292
|
+
|
|
2293
|
+
// Visit a parse tree produced by SnowflakeParser#drop_command.
|
|
2294
|
+
}, {
|
|
2295
|
+
key: "visitDrop_command",
|
|
2296
|
+
value: function visitDrop_command(ctx) {
|
|
2297
|
+
return this.visitChildren(ctx);
|
|
2298
|
+
}
|
|
2299
|
+
|
|
2300
|
+
// Visit a parse tree produced by SnowflakeParser#drop_object.
|
|
2301
|
+
}, {
|
|
2302
|
+
key: "visitDrop_object",
|
|
2303
|
+
value: function visitDrop_object(ctx) {
|
|
2304
|
+
return this.visitChildren(ctx);
|
|
2305
|
+
}
|
|
2306
|
+
|
|
2307
|
+
// Visit a parse tree produced by SnowflakeParser#drop_alert.
|
|
2308
|
+
}, {
|
|
2309
|
+
key: "visitDrop_alert",
|
|
2310
|
+
value: function visitDrop_alert(ctx) {
|
|
2311
|
+
return this.visitChildren(ctx);
|
|
2312
|
+
}
|
|
2313
|
+
|
|
2314
|
+
// Visit a parse tree produced by SnowflakeParser#drop_connection.
|
|
2315
|
+
}, {
|
|
2316
|
+
key: "visitDrop_connection",
|
|
2317
|
+
value: function visitDrop_connection(ctx) {
|
|
2318
|
+
return this.visitChildren(ctx);
|
|
2319
|
+
}
|
|
2320
|
+
|
|
2321
|
+
// Visit a parse tree produced by SnowflakeParser#drop_database.
|
|
2322
|
+
}, {
|
|
2323
|
+
key: "visitDrop_database",
|
|
2324
|
+
value: function visitDrop_database(ctx) {
|
|
2325
|
+
return this.visitChildren(ctx);
|
|
2326
|
+
}
|
|
2327
|
+
|
|
2328
|
+
// Visit a parse tree produced by SnowflakeParser#drop_dynamic_table.
|
|
2329
|
+
}, {
|
|
2330
|
+
key: "visitDrop_dynamic_table",
|
|
2331
|
+
value: function visitDrop_dynamic_table(ctx) {
|
|
2332
|
+
return this.visitChildren(ctx);
|
|
2333
|
+
}
|
|
2334
|
+
|
|
2335
|
+
// Visit a parse tree produced by SnowflakeParser#drop_external_table.
|
|
2336
|
+
}, {
|
|
2337
|
+
key: "visitDrop_external_table",
|
|
2338
|
+
value: function visitDrop_external_table(ctx) {
|
|
2339
|
+
return this.visitChildren(ctx);
|
|
2340
|
+
}
|
|
2341
|
+
|
|
2342
|
+
// Visit a parse tree produced by SnowflakeParser#drop_failover_group.
|
|
2343
|
+
}, {
|
|
2344
|
+
key: "visitDrop_failover_group",
|
|
2345
|
+
value: function visitDrop_failover_group(ctx) {
|
|
2346
|
+
return this.visitChildren(ctx);
|
|
2347
|
+
}
|
|
2348
|
+
|
|
2349
|
+
// Visit a parse tree produced by SnowflakeParser#drop_file_format.
|
|
2350
|
+
}, {
|
|
2351
|
+
key: "visitDrop_file_format",
|
|
2352
|
+
value: function visitDrop_file_format(ctx) {
|
|
2353
|
+
return this.visitChildren(ctx);
|
|
2354
|
+
}
|
|
2355
|
+
|
|
2356
|
+
// Visit a parse tree produced by SnowflakeParser#drop_function.
|
|
2357
|
+
}, {
|
|
2358
|
+
key: "visitDrop_function",
|
|
2359
|
+
value: function visitDrop_function(ctx) {
|
|
2360
|
+
return this.visitChildren(ctx);
|
|
2361
|
+
}
|
|
2362
|
+
|
|
2363
|
+
// Visit a parse tree produced by SnowflakeParser#drop_integration.
|
|
2364
|
+
}, {
|
|
2365
|
+
key: "visitDrop_integration",
|
|
2366
|
+
value: function visitDrop_integration(ctx) {
|
|
2367
|
+
return this.visitChildren(ctx);
|
|
2368
|
+
}
|
|
2369
|
+
|
|
2370
|
+
// Visit a parse tree produced by SnowflakeParser#drop_managed_account.
|
|
2371
|
+
}, {
|
|
2372
|
+
key: "visitDrop_managed_account",
|
|
2373
|
+
value: function visitDrop_managed_account(ctx) {
|
|
2374
|
+
return this.visitChildren(ctx);
|
|
2375
|
+
}
|
|
2376
|
+
|
|
2377
|
+
// Visit a parse tree produced by SnowflakeParser#drop_masking_policy.
|
|
2378
|
+
}, {
|
|
2379
|
+
key: "visitDrop_masking_policy",
|
|
2380
|
+
value: function visitDrop_masking_policy(ctx) {
|
|
2381
|
+
return this.visitChildren(ctx);
|
|
2382
|
+
}
|
|
2383
|
+
|
|
2384
|
+
// Visit a parse tree produced by SnowflakeParser#drop_materialized_view.
|
|
2385
|
+
}, {
|
|
2386
|
+
key: "visitDrop_materialized_view",
|
|
2387
|
+
value: function visitDrop_materialized_view(ctx) {
|
|
2388
|
+
return this.visitChildren(ctx);
|
|
2389
|
+
}
|
|
2390
|
+
|
|
2391
|
+
// Visit a parse tree produced by SnowflakeParser#drop_network_policy.
|
|
2392
|
+
}, {
|
|
2393
|
+
key: "visitDrop_network_policy",
|
|
2394
|
+
value: function visitDrop_network_policy(ctx) {
|
|
2395
|
+
return this.visitChildren(ctx);
|
|
2396
|
+
}
|
|
2397
|
+
|
|
2398
|
+
// Visit a parse tree produced by SnowflakeParser#drop_pipe.
|
|
2399
|
+
}, {
|
|
2400
|
+
key: "visitDrop_pipe",
|
|
2401
|
+
value: function visitDrop_pipe(ctx) {
|
|
2402
|
+
return this.visitChildren(ctx);
|
|
2403
|
+
}
|
|
2404
|
+
|
|
2405
|
+
// Visit a parse tree produced by SnowflakeParser#drop_procedure.
|
|
2406
|
+
}, {
|
|
2407
|
+
key: "visitDrop_procedure",
|
|
2408
|
+
value: function visitDrop_procedure(ctx) {
|
|
2409
|
+
return this.visitChildren(ctx);
|
|
2410
|
+
}
|
|
2411
|
+
|
|
2412
|
+
// Visit a parse tree produced by SnowflakeParser#drop_replication_group.
|
|
2413
|
+
}, {
|
|
2414
|
+
key: "visitDrop_replication_group",
|
|
2415
|
+
value: function visitDrop_replication_group(ctx) {
|
|
2416
|
+
return this.visitChildren(ctx);
|
|
2417
|
+
}
|
|
2418
|
+
|
|
2419
|
+
// Visit a parse tree produced by SnowflakeParser#drop_resource_monitor.
|
|
2420
|
+
}, {
|
|
2421
|
+
key: "visitDrop_resource_monitor",
|
|
2422
|
+
value: function visitDrop_resource_monitor(ctx) {
|
|
2423
|
+
return this.visitChildren(ctx);
|
|
2424
|
+
}
|
|
2425
|
+
|
|
2426
|
+
// Visit a parse tree produced by SnowflakeParser#drop_role.
|
|
2427
|
+
}, {
|
|
2428
|
+
key: "visitDrop_role",
|
|
2429
|
+
value: function visitDrop_role(ctx) {
|
|
2430
|
+
return this.visitChildren(ctx);
|
|
2431
|
+
}
|
|
2432
|
+
|
|
2433
|
+
// Visit a parse tree produced by SnowflakeParser#drop_row_access_policy.
|
|
2434
|
+
}, {
|
|
2435
|
+
key: "visitDrop_row_access_policy",
|
|
2436
|
+
value: function visitDrop_row_access_policy(ctx) {
|
|
2437
|
+
return this.visitChildren(ctx);
|
|
2438
|
+
}
|
|
2439
|
+
|
|
2440
|
+
// Visit a parse tree produced by SnowflakeParser#drop_schema.
|
|
2441
|
+
}, {
|
|
2442
|
+
key: "visitDrop_schema",
|
|
2443
|
+
value: function visitDrop_schema(ctx) {
|
|
2444
|
+
return this.visitChildren(ctx);
|
|
2445
|
+
}
|
|
2446
|
+
|
|
2447
|
+
// Visit a parse tree produced by SnowflakeParser#drop_sequence.
|
|
2448
|
+
}, {
|
|
2449
|
+
key: "visitDrop_sequence",
|
|
2450
|
+
value: function visitDrop_sequence(ctx) {
|
|
2451
|
+
return this.visitChildren(ctx);
|
|
2452
|
+
}
|
|
2453
|
+
|
|
2454
|
+
// Visit a parse tree produced by SnowflakeParser#drop_session_policy.
|
|
2455
|
+
}, {
|
|
2456
|
+
key: "visitDrop_session_policy",
|
|
2457
|
+
value: function visitDrop_session_policy(ctx) {
|
|
2458
|
+
return this.visitChildren(ctx);
|
|
2459
|
+
}
|
|
2460
|
+
|
|
2461
|
+
// Visit a parse tree produced by SnowflakeParser#drop_password_policy.
|
|
2462
|
+
}, {
|
|
2463
|
+
key: "visitDrop_password_policy",
|
|
2464
|
+
value: function visitDrop_password_policy(ctx) {
|
|
2465
|
+
return this.visitChildren(ctx);
|
|
2466
|
+
}
|
|
2467
|
+
|
|
2468
|
+
// Visit a parse tree produced by SnowflakeParser#drop_share.
|
|
2469
|
+
}, {
|
|
2470
|
+
key: "visitDrop_share",
|
|
2471
|
+
value: function visitDrop_share(ctx) {
|
|
2472
|
+
return this.visitChildren(ctx);
|
|
2473
|
+
}
|
|
2474
|
+
|
|
2475
|
+
// Visit a parse tree produced by SnowflakeParser#drop_stream.
|
|
2476
|
+
}, {
|
|
2477
|
+
key: "visitDrop_stream",
|
|
2478
|
+
value: function visitDrop_stream(ctx) {
|
|
2479
|
+
return this.visitChildren(ctx);
|
|
2480
|
+
}
|
|
2481
|
+
|
|
2482
|
+
// Visit a parse tree produced by SnowflakeParser#drop_table.
|
|
2483
|
+
}, {
|
|
2484
|
+
key: "visitDrop_table",
|
|
2485
|
+
value: function visitDrop_table(ctx) {
|
|
2486
|
+
return this.visitChildren(ctx);
|
|
2487
|
+
}
|
|
2488
|
+
|
|
2489
|
+
// Visit a parse tree produced by SnowflakeParser#drop_tag.
|
|
2490
|
+
}, {
|
|
2491
|
+
key: "visitDrop_tag",
|
|
2492
|
+
value: function visitDrop_tag(ctx) {
|
|
2493
|
+
return this.visitChildren(ctx);
|
|
2494
|
+
}
|
|
2495
|
+
|
|
2496
|
+
// Visit a parse tree produced by SnowflakeParser#drop_task.
|
|
2497
|
+
}, {
|
|
2498
|
+
key: "visitDrop_task",
|
|
2499
|
+
value: function visitDrop_task(ctx) {
|
|
2500
|
+
return this.visitChildren(ctx);
|
|
2501
|
+
}
|
|
2502
|
+
|
|
2503
|
+
// Visit a parse tree produced by SnowflakeParser#drop_user.
|
|
2504
|
+
}, {
|
|
2505
|
+
key: "visitDrop_user",
|
|
2506
|
+
value: function visitDrop_user(ctx) {
|
|
2507
|
+
return this.visitChildren(ctx);
|
|
2508
|
+
}
|
|
2509
|
+
|
|
2510
|
+
// Visit a parse tree produced by SnowflakeParser#drop_view.
|
|
2511
|
+
}, {
|
|
2512
|
+
key: "visitDrop_view",
|
|
2513
|
+
value: function visitDrop_view(ctx) {
|
|
2514
|
+
return this.visitChildren(ctx);
|
|
2515
|
+
}
|
|
2516
|
+
|
|
2517
|
+
// Visit a parse tree produced by SnowflakeParser#drop_warehouse.
|
|
2518
|
+
}, {
|
|
2519
|
+
key: "visitDrop_warehouse",
|
|
2520
|
+
value: function visitDrop_warehouse(ctx) {
|
|
2521
|
+
return this.visitChildren(ctx);
|
|
2522
|
+
}
|
|
2523
|
+
|
|
2524
|
+
// Visit a parse tree produced by SnowflakeParser#cascade_restrict.
|
|
2525
|
+
}, {
|
|
2526
|
+
key: "visitCascade_restrict",
|
|
2527
|
+
value: function visitCascade_restrict(ctx) {
|
|
2528
|
+
return this.visitChildren(ctx);
|
|
2529
|
+
}
|
|
2530
|
+
|
|
2531
|
+
// Visit a parse tree produced by SnowflakeParser#arg_types.
|
|
2532
|
+
}, {
|
|
2533
|
+
key: "visitArg_types",
|
|
2534
|
+
value: function visitArg_types(ctx) {
|
|
2535
|
+
return this.visitChildren(ctx);
|
|
2536
|
+
}
|
|
2537
|
+
|
|
2538
|
+
// Visit a parse tree produced by SnowflakeParser#undrop_command.
|
|
2539
|
+
}, {
|
|
2540
|
+
key: "visitUndrop_command",
|
|
2541
|
+
value: function visitUndrop_command(ctx) {
|
|
2542
|
+
return this.visitChildren(ctx);
|
|
2543
|
+
}
|
|
2544
|
+
|
|
2545
|
+
// Visit a parse tree produced by SnowflakeParser#undrop_database.
|
|
2546
|
+
}, {
|
|
2547
|
+
key: "visitUndrop_database",
|
|
2548
|
+
value: function visitUndrop_database(ctx) {
|
|
2549
|
+
return this.visitChildren(ctx);
|
|
2550
|
+
}
|
|
2551
|
+
|
|
2552
|
+
// Visit a parse tree produced by SnowflakeParser#undrop_schema.
|
|
2553
|
+
}, {
|
|
2554
|
+
key: "visitUndrop_schema",
|
|
2555
|
+
value: function visitUndrop_schema(ctx) {
|
|
2556
|
+
return this.visitChildren(ctx);
|
|
2557
|
+
}
|
|
2558
|
+
|
|
2559
|
+
// Visit a parse tree produced by SnowflakeParser#undrop_table.
|
|
2560
|
+
}, {
|
|
2561
|
+
key: "visitUndrop_table",
|
|
2562
|
+
value: function visitUndrop_table(ctx) {
|
|
2563
|
+
return this.visitChildren(ctx);
|
|
2564
|
+
}
|
|
2565
|
+
|
|
2566
|
+
// Visit a parse tree produced by SnowflakeParser#undrop_tag.
|
|
2567
|
+
}, {
|
|
2568
|
+
key: "visitUndrop_tag",
|
|
2569
|
+
value: function visitUndrop_tag(ctx) {
|
|
2570
|
+
return this.visitChildren(ctx);
|
|
2571
|
+
}
|
|
2572
|
+
|
|
2573
|
+
// Visit a parse tree produced by SnowflakeParser#use_command.
|
|
2574
|
+
}, {
|
|
2575
|
+
key: "visitUse_command",
|
|
2576
|
+
value: function visitUse_command(ctx) {
|
|
2577
|
+
return this.visitChildren(ctx);
|
|
2578
|
+
}
|
|
2579
|
+
|
|
2580
|
+
// Visit a parse tree produced by SnowflakeParser#use_database.
|
|
2581
|
+
}, {
|
|
2582
|
+
key: "visitUse_database",
|
|
2583
|
+
value: function visitUse_database(ctx) {
|
|
2584
|
+
return this.visitChildren(ctx);
|
|
2585
|
+
}
|
|
2586
|
+
|
|
2587
|
+
// Visit a parse tree produced by SnowflakeParser#use_role.
|
|
2588
|
+
}, {
|
|
2589
|
+
key: "visitUse_role",
|
|
2590
|
+
value: function visitUse_role(ctx) {
|
|
2591
|
+
return this.visitChildren(ctx);
|
|
2592
|
+
}
|
|
2593
|
+
|
|
2594
|
+
// Visit a parse tree produced by SnowflakeParser#use_schema.
|
|
2595
|
+
}, {
|
|
2596
|
+
key: "visitUse_schema",
|
|
2597
|
+
value: function visitUse_schema(ctx) {
|
|
2598
|
+
return this.visitChildren(ctx);
|
|
2599
|
+
}
|
|
2600
|
+
|
|
2601
|
+
// Visit a parse tree produced by SnowflakeParser#use_secondary_roles.
|
|
2602
|
+
}, {
|
|
2603
|
+
key: "visitUse_secondary_roles",
|
|
2604
|
+
value: function visitUse_secondary_roles(ctx) {
|
|
2605
|
+
return this.visitChildren(ctx);
|
|
2606
|
+
}
|
|
2607
|
+
|
|
2608
|
+
// Visit a parse tree produced by SnowflakeParser#use_warehouse.
|
|
2609
|
+
}, {
|
|
2610
|
+
key: "visitUse_warehouse",
|
|
2611
|
+
value: function visitUse_warehouse(ctx) {
|
|
2612
|
+
return this.visitChildren(ctx);
|
|
2613
|
+
}
|
|
2614
|
+
|
|
2615
|
+
// Visit a parse tree produced by SnowflakeParser#comment_clause.
|
|
2616
|
+
}, {
|
|
2617
|
+
key: "visitComment_clause",
|
|
2618
|
+
value: function visitComment_clause(ctx) {
|
|
2619
|
+
return this.visitChildren(ctx);
|
|
2620
|
+
}
|
|
2621
|
+
|
|
2622
|
+
// Visit a parse tree produced by SnowflakeParser#if_suspended.
|
|
2623
|
+
}, {
|
|
2624
|
+
key: "visitIf_suspended",
|
|
2625
|
+
value: function visitIf_suspended(ctx) {
|
|
2626
|
+
return this.visitChildren(ctx);
|
|
2627
|
+
}
|
|
2628
|
+
|
|
2629
|
+
// Visit a parse tree produced by SnowflakeParser#if_exists.
|
|
2630
|
+
}, {
|
|
2631
|
+
key: "visitIf_exists",
|
|
2632
|
+
value: function visitIf_exists(ctx) {
|
|
2633
|
+
return this.visitChildren(ctx);
|
|
2634
|
+
}
|
|
2635
|
+
|
|
2636
|
+
// Visit a parse tree produced by SnowflakeParser#if_not_exists.
|
|
2637
|
+
}, {
|
|
2638
|
+
key: "visitIf_not_exists",
|
|
2639
|
+
value: function visitIf_not_exists(ctx) {
|
|
2640
|
+
return this.visitChildren(ctx);
|
|
2641
|
+
}
|
|
2642
|
+
|
|
2643
|
+
// Visit a parse tree produced by SnowflakeParser#or_replace.
|
|
2644
|
+
}, {
|
|
2645
|
+
key: "visitOr_replace",
|
|
2646
|
+
value: function visitOr_replace(ctx) {
|
|
2647
|
+
return this.visitChildren(ctx);
|
|
2648
|
+
}
|
|
2649
|
+
|
|
2650
|
+
// Visit a parse tree produced by SnowflakeParser#describe.
|
|
2651
|
+
}, {
|
|
2652
|
+
key: "visitDescribe",
|
|
2653
|
+
value: function visitDescribe(ctx) {
|
|
2654
|
+
return this.visitChildren(ctx);
|
|
2655
|
+
}
|
|
2656
|
+
|
|
2657
|
+
// Visit a parse tree produced by SnowflakeParser#describe_command.
|
|
2658
|
+
}, {
|
|
2659
|
+
key: "visitDescribe_command",
|
|
2660
|
+
value: function visitDescribe_command(ctx) {
|
|
2661
|
+
return this.visitChildren(ctx);
|
|
2662
|
+
}
|
|
2663
|
+
|
|
2664
|
+
// Visit a parse tree produced by SnowflakeParser#describe_alert.
|
|
2665
|
+
}, {
|
|
2666
|
+
key: "visitDescribe_alert",
|
|
2667
|
+
value: function visitDescribe_alert(ctx) {
|
|
2668
|
+
return this.visitChildren(ctx);
|
|
2669
|
+
}
|
|
2670
|
+
|
|
2671
|
+
// Visit a parse tree produced by SnowflakeParser#describe_database.
|
|
2672
|
+
}, {
|
|
2673
|
+
key: "visitDescribe_database",
|
|
2674
|
+
value: function visitDescribe_database(ctx) {
|
|
2675
|
+
return this.visitChildren(ctx);
|
|
2676
|
+
}
|
|
2677
|
+
|
|
2678
|
+
// Visit a parse tree produced by SnowflakeParser#describe_dynamic_table.
|
|
2679
|
+
}, {
|
|
2680
|
+
key: "visitDescribe_dynamic_table",
|
|
2681
|
+
value: function visitDescribe_dynamic_table(ctx) {
|
|
2682
|
+
return this.visitChildren(ctx);
|
|
2683
|
+
}
|
|
2684
|
+
|
|
2685
|
+
// Visit a parse tree produced by SnowflakeParser#describe_event_table.
|
|
2686
|
+
}, {
|
|
2687
|
+
key: "visitDescribe_event_table",
|
|
2688
|
+
value: function visitDescribe_event_table(ctx) {
|
|
2689
|
+
return this.visitChildren(ctx);
|
|
2690
|
+
}
|
|
2691
|
+
|
|
2692
|
+
// Visit a parse tree produced by SnowflakeParser#describe_external_table.
|
|
2693
|
+
}, {
|
|
2694
|
+
key: "visitDescribe_external_table",
|
|
2695
|
+
value: function visitDescribe_external_table(ctx) {
|
|
2696
|
+
return this.visitChildren(ctx);
|
|
2697
|
+
}
|
|
2698
|
+
|
|
2699
|
+
// Visit a parse tree produced by SnowflakeParser#describe_file_format.
|
|
2700
|
+
}, {
|
|
2701
|
+
key: "visitDescribe_file_format",
|
|
2702
|
+
value: function visitDescribe_file_format(ctx) {
|
|
2703
|
+
return this.visitChildren(ctx);
|
|
2704
|
+
}
|
|
2705
|
+
|
|
2706
|
+
// Visit a parse tree produced by SnowflakeParser#describe_function.
|
|
2707
|
+
}, {
|
|
2708
|
+
key: "visitDescribe_function",
|
|
2709
|
+
value: function visitDescribe_function(ctx) {
|
|
2710
|
+
return this.visitChildren(ctx);
|
|
2711
|
+
}
|
|
2712
|
+
|
|
2713
|
+
// Visit a parse tree produced by SnowflakeParser#describe_integration.
|
|
2714
|
+
}, {
|
|
2715
|
+
key: "visitDescribe_integration",
|
|
2716
|
+
value: function visitDescribe_integration(ctx) {
|
|
2717
|
+
return this.visitChildren(ctx);
|
|
2718
|
+
}
|
|
2719
|
+
|
|
2720
|
+
// Visit a parse tree produced by SnowflakeParser#describe_masking_policy.
|
|
2721
|
+
}, {
|
|
2722
|
+
key: "visitDescribe_masking_policy",
|
|
2723
|
+
value: function visitDescribe_masking_policy(ctx) {
|
|
2724
|
+
return this.visitChildren(ctx);
|
|
2725
|
+
}
|
|
2726
|
+
|
|
2727
|
+
// Visit a parse tree produced by SnowflakeParser#describe_materialized_view.
|
|
2728
|
+
}, {
|
|
2729
|
+
key: "visitDescribe_materialized_view",
|
|
2730
|
+
value: function visitDescribe_materialized_view(ctx) {
|
|
2731
|
+
return this.visitChildren(ctx);
|
|
2732
|
+
}
|
|
2733
|
+
|
|
2734
|
+
// Visit a parse tree produced by SnowflakeParser#describe_network_policy.
|
|
2735
|
+
}, {
|
|
2736
|
+
key: "visitDescribe_network_policy",
|
|
2737
|
+
value: function visitDescribe_network_policy(ctx) {
|
|
2738
|
+
return this.visitChildren(ctx);
|
|
2739
|
+
}
|
|
2740
|
+
|
|
2741
|
+
// Visit a parse tree produced by SnowflakeParser#describe_pipe.
|
|
2742
|
+
}, {
|
|
2743
|
+
key: "visitDescribe_pipe",
|
|
2744
|
+
value: function visitDescribe_pipe(ctx) {
|
|
2745
|
+
return this.visitChildren(ctx);
|
|
2746
|
+
}
|
|
2747
|
+
|
|
2748
|
+
// Visit a parse tree produced by SnowflakeParser#describe_procedure.
|
|
2749
|
+
}, {
|
|
2750
|
+
key: "visitDescribe_procedure",
|
|
2751
|
+
value: function visitDescribe_procedure(ctx) {
|
|
2752
|
+
return this.visitChildren(ctx);
|
|
2753
|
+
}
|
|
2754
|
+
|
|
2755
|
+
// Visit a parse tree produced by SnowflakeParser#describe_result.
|
|
2756
|
+
}, {
|
|
2757
|
+
key: "visitDescribe_result",
|
|
2758
|
+
value: function visitDescribe_result(ctx) {
|
|
2759
|
+
return this.visitChildren(ctx);
|
|
2760
|
+
}
|
|
2761
|
+
|
|
2762
|
+
// Visit a parse tree produced by SnowflakeParser#describe_row_access_policy.
|
|
2763
|
+
}, {
|
|
2764
|
+
key: "visitDescribe_row_access_policy",
|
|
2765
|
+
value: function visitDescribe_row_access_policy(ctx) {
|
|
2766
|
+
return this.visitChildren(ctx);
|
|
2767
|
+
}
|
|
2768
|
+
|
|
2769
|
+
// Visit a parse tree produced by SnowflakeParser#describe_schema.
|
|
2770
|
+
}, {
|
|
2771
|
+
key: "visitDescribe_schema",
|
|
2772
|
+
value: function visitDescribe_schema(ctx) {
|
|
2773
|
+
return this.visitChildren(ctx);
|
|
2774
|
+
}
|
|
2775
|
+
|
|
2776
|
+
// Visit a parse tree produced by SnowflakeParser#describe_search_optimization.
|
|
2777
|
+
}, {
|
|
2778
|
+
key: "visitDescribe_search_optimization",
|
|
2779
|
+
value: function visitDescribe_search_optimization(ctx) {
|
|
2780
|
+
return this.visitChildren(ctx);
|
|
2781
|
+
}
|
|
2782
|
+
|
|
2783
|
+
// Visit a parse tree produced by SnowflakeParser#describe_sequence.
|
|
2784
|
+
}, {
|
|
2785
|
+
key: "visitDescribe_sequence",
|
|
2786
|
+
value: function visitDescribe_sequence(ctx) {
|
|
2787
|
+
return this.visitChildren(ctx);
|
|
2788
|
+
}
|
|
2789
|
+
|
|
2790
|
+
// Visit a parse tree produced by SnowflakeParser#describe_session_policy.
|
|
2791
|
+
}, {
|
|
2792
|
+
key: "visitDescribe_session_policy",
|
|
2793
|
+
value: function visitDescribe_session_policy(ctx) {
|
|
2794
|
+
return this.visitChildren(ctx);
|
|
2795
|
+
}
|
|
2796
|
+
|
|
2797
|
+
// Visit a parse tree produced by SnowflakeParser#describe_password_policy.
|
|
2798
|
+
}, {
|
|
2799
|
+
key: "visitDescribe_password_policy",
|
|
2800
|
+
value: function visitDescribe_password_policy(ctx) {
|
|
2801
|
+
return this.visitChildren(ctx);
|
|
2802
|
+
}
|
|
2803
|
+
|
|
2804
|
+
// Visit a parse tree produced by SnowflakeParser#describe_share.
|
|
2805
|
+
}, {
|
|
2806
|
+
key: "visitDescribe_share",
|
|
2807
|
+
value: function visitDescribe_share(ctx) {
|
|
2808
|
+
return this.visitChildren(ctx);
|
|
2809
|
+
}
|
|
2810
|
+
|
|
2811
|
+
// Visit a parse tree produced by SnowflakeParser#describe_stream.
|
|
2812
|
+
}, {
|
|
2813
|
+
key: "visitDescribe_stream",
|
|
2814
|
+
value: function visitDescribe_stream(ctx) {
|
|
2815
|
+
return this.visitChildren(ctx);
|
|
2816
|
+
}
|
|
2817
|
+
|
|
2818
|
+
// Visit a parse tree produced by SnowflakeParser#describe_table.
|
|
2819
|
+
}, {
|
|
2820
|
+
key: "visitDescribe_table",
|
|
2821
|
+
value: function visitDescribe_table(ctx) {
|
|
2822
|
+
return this.visitChildren(ctx);
|
|
2823
|
+
}
|
|
2824
|
+
|
|
2825
|
+
// Visit a parse tree produced by SnowflakeParser#describe_task.
|
|
2826
|
+
}, {
|
|
2827
|
+
key: "visitDescribe_task",
|
|
2828
|
+
value: function visitDescribe_task(ctx) {
|
|
2829
|
+
return this.visitChildren(ctx);
|
|
2830
|
+
}
|
|
2831
|
+
|
|
2832
|
+
// Visit a parse tree produced by SnowflakeParser#describe_transaction.
|
|
2833
|
+
}, {
|
|
2834
|
+
key: "visitDescribe_transaction",
|
|
2835
|
+
value: function visitDescribe_transaction(ctx) {
|
|
2836
|
+
return this.visitChildren(ctx);
|
|
2837
|
+
}
|
|
2838
|
+
|
|
2839
|
+
// Visit a parse tree produced by SnowflakeParser#describe_user.
|
|
2840
|
+
}, {
|
|
2841
|
+
key: "visitDescribe_user",
|
|
2842
|
+
value: function visitDescribe_user(ctx) {
|
|
2843
|
+
return this.visitChildren(ctx);
|
|
2844
|
+
}
|
|
2845
|
+
|
|
2846
|
+
// Visit a parse tree produced by SnowflakeParser#describe_view.
|
|
2847
|
+
}, {
|
|
2848
|
+
key: "visitDescribe_view",
|
|
2849
|
+
value: function visitDescribe_view(ctx) {
|
|
2850
|
+
return this.visitChildren(ctx);
|
|
2851
|
+
}
|
|
2852
|
+
|
|
2853
|
+
// Visit a parse tree produced by SnowflakeParser#describe_warehouse.
|
|
2854
|
+
}, {
|
|
2855
|
+
key: "visitDescribe_warehouse",
|
|
2856
|
+
value: function visitDescribe_warehouse(ctx) {
|
|
2857
|
+
return this.visitChildren(ctx);
|
|
2858
|
+
}
|
|
2859
|
+
|
|
2860
|
+
// Visit a parse tree produced by SnowflakeParser#show_command.
|
|
2861
|
+
}, {
|
|
2862
|
+
key: "visitShow_command",
|
|
2863
|
+
value: function visitShow_command(ctx) {
|
|
2864
|
+
return this.visitChildren(ctx);
|
|
2865
|
+
}
|
|
2866
|
+
|
|
2867
|
+
// Visit a parse tree produced by SnowflakeParser#show_alerts.
|
|
2868
|
+
}, {
|
|
2869
|
+
key: "visitShow_alerts",
|
|
2870
|
+
value: function visitShow_alerts(ctx) {
|
|
2871
|
+
return this.visitChildren(ctx);
|
|
2872
|
+
}
|
|
2873
|
+
|
|
2874
|
+
// Visit a parse tree produced by SnowflakeParser#show_channels.
|
|
2875
|
+
}, {
|
|
2876
|
+
key: "visitShow_channels",
|
|
2877
|
+
value: function visitShow_channels(ctx) {
|
|
2878
|
+
return this.visitChildren(ctx);
|
|
2879
|
+
}
|
|
2880
|
+
|
|
2881
|
+
// Visit a parse tree produced by SnowflakeParser#show_columns.
|
|
2882
|
+
}, {
|
|
2883
|
+
key: "visitShow_columns",
|
|
2884
|
+
value: function visitShow_columns(ctx) {
|
|
2885
|
+
return this.visitChildren(ctx);
|
|
2886
|
+
}
|
|
2887
|
+
|
|
2888
|
+
// Visit a parse tree produced by SnowflakeParser#show_connections.
|
|
2889
|
+
}, {
|
|
2890
|
+
key: "visitShow_connections",
|
|
2891
|
+
value: function visitShow_connections(ctx) {
|
|
2892
|
+
return this.visitChildren(ctx);
|
|
2893
|
+
}
|
|
2894
|
+
|
|
2895
|
+
// Visit a parse tree produced by SnowflakeParser#starts_with.
|
|
2896
|
+
}, {
|
|
2897
|
+
key: "visitStarts_with",
|
|
2898
|
+
value: function visitStarts_with(ctx) {
|
|
2899
|
+
return this.visitChildren(ctx);
|
|
2900
|
+
}
|
|
2901
|
+
|
|
2902
|
+
// Visit a parse tree produced by SnowflakeParser#limit_rows.
|
|
2903
|
+
}, {
|
|
2904
|
+
key: "visitLimit_rows",
|
|
2905
|
+
value: function visitLimit_rows(ctx) {
|
|
2906
|
+
return this.visitChildren(ctx);
|
|
2907
|
+
}
|
|
2908
|
+
|
|
2909
|
+
// Visit a parse tree produced by SnowflakeParser#show_databases.
|
|
2910
|
+
}, {
|
|
2911
|
+
key: "visitShow_databases",
|
|
2912
|
+
value: function visitShow_databases(ctx) {
|
|
2913
|
+
return this.visitChildren(ctx);
|
|
2914
|
+
}
|
|
2915
|
+
|
|
2916
|
+
// Visit a parse tree produced by SnowflakeParser#show_databases_in_failover_group.
|
|
2917
|
+
}, {
|
|
2918
|
+
key: "visitShow_databases_in_failover_group",
|
|
2919
|
+
value: function visitShow_databases_in_failover_group(ctx) {
|
|
2920
|
+
return this.visitChildren(ctx);
|
|
2921
|
+
}
|
|
2922
|
+
|
|
2923
|
+
// Visit a parse tree produced by SnowflakeParser#show_databases_in_replication_group.
|
|
2924
|
+
}, {
|
|
2925
|
+
key: "visitShow_databases_in_replication_group",
|
|
2926
|
+
value: function visitShow_databases_in_replication_group(ctx) {
|
|
2927
|
+
return this.visitChildren(ctx);
|
|
2928
|
+
}
|
|
2929
|
+
|
|
2930
|
+
// Visit a parse tree produced by SnowflakeParser#show_delegated_authorizations.
|
|
2931
|
+
}, {
|
|
2932
|
+
key: "visitShow_delegated_authorizations",
|
|
2933
|
+
value: function visitShow_delegated_authorizations(ctx) {
|
|
2934
|
+
return this.visitChildren(ctx);
|
|
2935
|
+
}
|
|
2936
|
+
|
|
2937
|
+
// Visit a parse tree produced by SnowflakeParser#show_dynamic_tables.
|
|
2938
|
+
}, {
|
|
2939
|
+
key: "visitShow_dynamic_tables",
|
|
2940
|
+
value: function visitShow_dynamic_tables(ctx) {
|
|
2941
|
+
return this.visitChildren(ctx);
|
|
2942
|
+
}
|
|
2943
|
+
|
|
2944
|
+
// Visit a parse tree produced by SnowflakeParser#show_event_tables.
|
|
2945
|
+
}, {
|
|
2946
|
+
key: "visitShow_event_tables",
|
|
2947
|
+
value: function visitShow_event_tables(ctx) {
|
|
2948
|
+
return this.visitChildren(ctx);
|
|
2949
|
+
}
|
|
2950
|
+
|
|
2951
|
+
// Visit a parse tree produced by SnowflakeParser#show_external_functions.
|
|
2952
|
+
}, {
|
|
2953
|
+
key: "visitShow_external_functions",
|
|
2954
|
+
value: function visitShow_external_functions(ctx) {
|
|
2955
|
+
return this.visitChildren(ctx);
|
|
2956
|
+
}
|
|
2957
|
+
|
|
2958
|
+
// Visit a parse tree produced by SnowflakeParser#show_external_tables.
|
|
2959
|
+
}, {
|
|
2960
|
+
key: "visitShow_external_tables",
|
|
2961
|
+
value: function visitShow_external_tables(ctx) {
|
|
2962
|
+
return this.visitChildren(ctx);
|
|
2963
|
+
}
|
|
2964
|
+
|
|
2965
|
+
// Visit a parse tree produced by SnowflakeParser#show_failover_groups.
|
|
2966
|
+
}, {
|
|
2967
|
+
key: "visitShow_failover_groups",
|
|
2968
|
+
value: function visitShow_failover_groups(ctx) {
|
|
2969
|
+
return this.visitChildren(ctx);
|
|
2970
|
+
}
|
|
2971
|
+
|
|
2972
|
+
// Visit a parse tree produced by SnowflakeParser#show_file_formats.
|
|
2973
|
+
}, {
|
|
2974
|
+
key: "visitShow_file_formats",
|
|
2975
|
+
value: function visitShow_file_formats(ctx) {
|
|
2976
|
+
return this.visitChildren(ctx);
|
|
2977
|
+
}
|
|
2978
|
+
|
|
2979
|
+
// Visit a parse tree produced by SnowflakeParser#show_functions.
|
|
2980
|
+
}, {
|
|
2981
|
+
key: "visitShow_functions",
|
|
2982
|
+
value: function visitShow_functions(ctx) {
|
|
2983
|
+
return this.visitChildren(ctx);
|
|
2984
|
+
}
|
|
2985
|
+
|
|
2986
|
+
// Visit a parse tree produced by SnowflakeParser#show_global_accounts.
|
|
2987
|
+
}, {
|
|
2988
|
+
key: "visitShow_global_accounts",
|
|
2989
|
+
value: function visitShow_global_accounts(ctx) {
|
|
2990
|
+
return this.visitChildren(ctx);
|
|
2991
|
+
}
|
|
2992
|
+
|
|
2993
|
+
// Visit a parse tree produced by SnowflakeParser#show_grants.
|
|
2994
|
+
}, {
|
|
2995
|
+
key: "visitShow_grants",
|
|
2996
|
+
value: function visitShow_grants(ctx) {
|
|
2997
|
+
return this.visitChildren(ctx);
|
|
2998
|
+
}
|
|
2999
|
+
|
|
3000
|
+
// Visit a parse tree produced by SnowflakeParser#show_grants_opts.
|
|
3001
|
+
}, {
|
|
3002
|
+
key: "visitShow_grants_opts",
|
|
3003
|
+
value: function visitShow_grants_opts(ctx) {
|
|
3004
|
+
return this.visitChildren(ctx);
|
|
3005
|
+
}
|
|
3006
|
+
|
|
3007
|
+
// Visit a parse tree produced by SnowflakeParser#show_integrations.
|
|
3008
|
+
}, {
|
|
3009
|
+
key: "visitShow_integrations",
|
|
3010
|
+
value: function visitShow_integrations(ctx) {
|
|
3011
|
+
return this.visitChildren(ctx);
|
|
3012
|
+
}
|
|
3013
|
+
|
|
3014
|
+
// Visit a parse tree produced by SnowflakeParser#show_locks.
|
|
3015
|
+
}, {
|
|
3016
|
+
key: "visitShow_locks",
|
|
3017
|
+
value: function visitShow_locks(ctx) {
|
|
3018
|
+
return this.visitChildren(ctx);
|
|
3019
|
+
}
|
|
3020
|
+
|
|
3021
|
+
// Visit a parse tree produced by SnowflakeParser#show_managed_accounts.
|
|
3022
|
+
}, {
|
|
3023
|
+
key: "visitShow_managed_accounts",
|
|
3024
|
+
value: function visitShow_managed_accounts(ctx) {
|
|
3025
|
+
return this.visitChildren(ctx);
|
|
3026
|
+
}
|
|
3027
|
+
|
|
3028
|
+
// Visit a parse tree produced by SnowflakeParser#show_masking_policies.
|
|
3029
|
+
}, {
|
|
3030
|
+
key: "visitShow_masking_policies",
|
|
3031
|
+
value: function visitShow_masking_policies(ctx) {
|
|
3032
|
+
return this.visitChildren(ctx);
|
|
3033
|
+
}
|
|
3034
|
+
|
|
3035
|
+
// Visit a parse tree produced by SnowflakeParser#in_obj.
|
|
3036
|
+
}, {
|
|
3037
|
+
key: "visitIn_obj",
|
|
3038
|
+
value: function visitIn_obj(ctx) {
|
|
3039
|
+
return this.visitChildren(ctx);
|
|
3040
|
+
}
|
|
3041
|
+
|
|
3042
|
+
// Visit a parse tree produced by SnowflakeParser#in_obj_2.
|
|
3043
|
+
}, {
|
|
3044
|
+
key: "visitIn_obj_2",
|
|
3045
|
+
value: function visitIn_obj_2(ctx) {
|
|
3046
|
+
return this.visitChildren(ctx);
|
|
3047
|
+
}
|
|
3048
|
+
|
|
3049
|
+
// Visit a parse tree produced by SnowflakeParser#show_materialized_views.
|
|
3050
|
+
}, {
|
|
3051
|
+
key: "visitShow_materialized_views",
|
|
3052
|
+
value: function visitShow_materialized_views(ctx) {
|
|
3053
|
+
return this.visitChildren(ctx);
|
|
3054
|
+
}
|
|
3055
|
+
|
|
3056
|
+
// Visit a parse tree produced by SnowflakeParser#show_network_policies.
|
|
3057
|
+
}, {
|
|
3058
|
+
key: "visitShow_network_policies",
|
|
3059
|
+
value: function visitShow_network_policies(ctx) {
|
|
3060
|
+
return this.visitChildren(ctx);
|
|
3061
|
+
}
|
|
3062
|
+
|
|
3063
|
+
// Visit a parse tree produced by SnowflakeParser#show_objects.
|
|
3064
|
+
}, {
|
|
3065
|
+
key: "visitShow_objects",
|
|
3066
|
+
value: function visitShow_objects(ctx) {
|
|
3067
|
+
return this.visitChildren(ctx);
|
|
3068
|
+
}
|
|
3069
|
+
|
|
3070
|
+
// Visit a parse tree produced by SnowflakeParser#show_organization_accounts.
|
|
3071
|
+
}, {
|
|
3072
|
+
key: "visitShow_organization_accounts",
|
|
3073
|
+
value: function visitShow_organization_accounts(ctx) {
|
|
3074
|
+
return this.visitChildren(ctx);
|
|
3075
|
+
}
|
|
3076
|
+
|
|
3077
|
+
// Visit a parse tree produced by SnowflakeParser#in_for.
|
|
3078
|
+
}, {
|
|
3079
|
+
key: "visitIn_for",
|
|
3080
|
+
value: function visitIn_for(ctx) {
|
|
3081
|
+
return this.visitChildren(ctx);
|
|
3082
|
+
}
|
|
3083
|
+
|
|
3084
|
+
// Visit a parse tree produced by SnowflakeParser#show_parameters.
|
|
3085
|
+
}, {
|
|
3086
|
+
key: "visitShow_parameters",
|
|
3087
|
+
value: function visitShow_parameters(ctx) {
|
|
3088
|
+
return this.visitChildren(ctx);
|
|
3089
|
+
}
|
|
3090
|
+
|
|
3091
|
+
// Visit a parse tree produced by SnowflakeParser#show_pipes.
|
|
3092
|
+
}, {
|
|
3093
|
+
key: "visitShow_pipes",
|
|
3094
|
+
value: function visitShow_pipes(ctx) {
|
|
3095
|
+
return this.visitChildren(ctx);
|
|
3096
|
+
}
|
|
3097
|
+
|
|
3098
|
+
// Visit a parse tree produced by SnowflakeParser#show_primary_keys.
|
|
3099
|
+
}, {
|
|
3100
|
+
key: "visitShow_primary_keys",
|
|
3101
|
+
value: function visitShow_primary_keys(ctx) {
|
|
3102
|
+
return this.visitChildren(ctx);
|
|
3103
|
+
}
|
|
3104
|
+
|
|
3105
|
+
// Visit a parse tree produced by SnowflakeParser#show_procedures.
|
|
3106
|
+
}, {
|
|
3107
|
+
key: "visitShow_procedures",
|
|
3108
|
+
value: function visitShow_procedures(ctx) {
|
|
3109
|
+
return this.visitChildren(ctx);
|
|
3110
|
+
}
|
|
3111
|
+
|
|
3112
|
+
// Visit a parse tree produced by SnowflakeParser#show_regions.
|
|
3113
|
+
}, {
|
|
3114
|
+
key: "visitShow_regions",
|
|
3115
|
+
value: function visitShow_regions(ctx) {
|
|
3116
|
+
return this.visitChildren(ctx);
|
|
3117
|
+
}
|
|
3118
|
+
|
|
3119
|
+
// Visit a parse tree produced by SnowflakeParser#show_replication_accounts.
|
|
3120
|
+
}, {
|
|
3121
|
+
key: "visitShow_replication_accounts",
|
|
3122
|
+
value: function visitShow_replication_accounts(ctx) {
|
|
3123
|
+
return this.visitChildren(ctx);
|
|
3124
|
+
}
|
|
3125
|
+
|
|
3126
|
+
// Visit a parse tree produced by SnowflakeParser#show_replication_databases.
|
|
3127
|
+
}, {
|
|
3128
|
+
key: "visitShow_replication_databases",
|
|
3129
|
+
value: function visitShow_replication_databases(ctx) {
|
|
3130
|
+
return this.visitChildren(ctx);
|
|
3131
|
+
}
|
|
3132
|
+
|
|
3133
|
+
// Visit a parse tree produced by SnowflakeParser#show_replication_groups.
|
|
3134
|
+
}, {
|
|
3135
|
+
key: "visitShow_replication_groups",
|
|
3136
|
+
value: function visitShow_replication_groups(ctx) {
|
|
3137
|
+
return this.visitChildren(ctx);
|
|
3138
|
+
}
|
|
3139
|
+
|
|
3140
|
+
// Visit a parse tree produced by SnowflakeParser#show_resource_monitors.
|
|
3141
|
+
}, {
|
|
3142
|
+
key: "visitShow_resource_monitors",
|
|
3143
|
+
value: function visitShow_resource_monitors(ctx) {
|
|
3144
|
+
return this.visitChildren(ctx);
|
|
3145
|
+
}
|
|
3146
|
+
|
|
3147
|
+
// Visit a parse tree produced by SnowflakeParser#show_roles.
|
|
3148
|
+
}, {
|
|
3149
|
+
key: "visitShow_roles",
|
|
3150
|
+
value: function visitShow_roles(ctx) {
|
|
3151
|
+
return this.visitChildren(ctx);
|
|
3152
|
+
}
|
|
3153
|
+
|
|
3154
|
+
// Visit a parse tree produced by SnowflakeParser#show_row_access_policies.
|
|
3155
|
+
}, {
|
|
3156
|
+
key: "visitShow_row_access_policies",
|
|
3157
|
+
value: function visitShow_row_access_policies(ctx) {
|
|
3158
|
+
return this.visitChildren(ctx);
|
|
3159
|
+
}
|
|
3160
|
+
|
|
3161
|
+
// Visit a parse tree produced by SnowflakeParser#show_schemas.
|
|
3162
|
+
}, {
|
|
3163
|
+
key: "visitShow_schemas",
|
|
3164
|
+
value: function visitShow_schemas(ctx) {
|
|
3165
|
+
return this.visitChildren(ctx);
|
|
3166
|
+
}
|
|
3167
|
+
|
|
3168
|
+
// Visit a parse tree produced by SnowflakeParser#show_sequences.
|
|
3169
|
+
}, {
|
|
3170
|
+
key: "visitShow_sequences",
|
|
3171
|
+
value: function visitShow_sequences(ctx) {
|
|
3172
|
+
return this.visitChildren(ctx);
|
|
3173
|
+
}
|
|
3174
|
+
|
|
3175
|
+
// Visit a parse tree produced by SnowflakeParser#show_session_policies.
|
|
3176
|
+
}, {
|
|
3177
|
+
key: "visitShow_session_policies",
|
|
3178
|
+
value: function visitShow_session_policies(ctx) {
|
|
3179
|
+
return this.visitChildren(ctx);
|
|
3180
|
+
}
|
|
3181
|
+
|
|
3182
|
+
// Visit a parse tree produced by SnowflakeParser#show_password_policies.
|
|
3183
|
+
}, {
|
|
3184
|
+
key: "visitShow_password_policies",
|
|
3185
|
+
value: function visitShow_password_policies(ctx) {
|
|
3186
|
+
return this.visitChildren(ctx);
|
|
3187
|
+
}
|
|
3188
|
+
|
|
3189
|
+
// Visit a parse tree produced by SnowflakeParser#show_shares.
|
|
3190
|
+
}, {
|
|
3191
|
+
key: "visitShow_shares",
|
|
3192
|
+
value: function visitShow_shares(ctx) {
|
|
3193
|
+
return this.visitChildren(ctx);
|
|
3194
|
+
}
|
|
3195
|
+
|
|
3196
|
+
// Visit a parse tree produced by SnowflakeParser#show_shares_in_failover_group.
|
|
3197
|
+
}, {
|
|
3198
|
+
key: "visitShow_shares_in_failover_group",
|
|
3199
|
+
value: function visitShow_shares_in_failover_group(ctx) {
|
|
3200
|
+
return this.visitChildren(ctx);
|
|
3201
|
+
}
|
|
3202
|
+
|
|
3203
|
+
// Visit a parse tree produced by SnowflakeParser#show_shares_in_replication_group.
|
|
3204
|
+
}, {
|
|
3205
|
+
key: "visitShow_shares_in_replication_group",
|
|
3206
|
+
value: function visitShow_shares_in_replication_group(ctx) {
|
|
3207
|
+
return this.visitChildren(ctx);
|
|
3208
|
+
}
|
|
3209
|
+
|
|
3210
|
+
// Visit a parse tree produced by SnowflakeParser#show_streams.
|
|
3211
|
+
}, {
|
|
3212
|
+
key: "visitShow_streams",
|
|
3213
|
+
value: function visitShow_streams(ctx) {
|
|
3214
|
+
return this.visitChildren(ctx);
|
|
3215
|
+
}
|
|
3216
|
+
|
|
3217
|
+
// Visit a parse tree produced by SnowflakeParser#show_tables.
|
|
3218
|
+
}, {
|
|
3219
|
+
key: "visitShow_tables",
|
|
3220
|
+
value: function visitShow_tables(ctx) {
|
|
3221
|
+
return this.visitChildren(ctx);
|
|
3222
|
+
}
|
|
3223
|
+
|
|
3224
|
+
// Visit a parse tree produced by SnowflakeParser#show_tags.
|
|
3225
|
+
}, {
|
|
3226
|
+
key: "visitShow_tags",
|
|
3227
|
+
value: function visitShow_tags(ctx) {
|
|
3228
|
+
return this.visitChildren(ctx);
|
|
3229
|
+
}
|
|
3230
|
+
|
|
3231
|
+
// Visit a parse tree produced by SnowflakeParser#show_tasks.
|
|
3232
|
+
}, {
|
|
3233
|
+
key: "visitShow_tasks",
|
|
3234
|
+
value: function visitShow_tasks(ctx) {
|
|
3235
|
+
return this.visitChildren(ctx);
|
|
3236
|
+
}
|
|
3237
|
+
|
|
3238
|
+
// Visit a parse tree produced by SnowflakeParser#show_transactions.
|
|
3239
|
+
}, {
|
|
3240
|
+
key: "visitShow_transactions",
|
|
3241
|
+
value: function visitShow_transactions(ctx) {
|
|
3242
|
+
return this.visitChildren(ctx);
|
|
3243
|
+
}
|
|
3244
|
+
|
|
3245
|
+
// Visit a parse tree produced by SnowflakeParser#show_user_functions.
|
|
3246
|
+
}, {
|
|
3247
|
+
key: "visitShow_user_functions",
|
|
3248
|
+
value: function visitShow_user_functions(ctx) {
|
|
3249
|
+
return this.visitChildren(ctx);
|
|
3250
|
+
}
|
|
3251
|
+
|
|
3252
|
+
// Visit a parse tree produced by SnowflakeParser#show_users.
|
|
3253
|
+
}, {
|
|
3254
|
+
key: "visitShow_users",
|
|
3255
|
+
value: function visitShow_users(ctx) {
|
|
3256
|
+
return this.visitChildren(ctx);
|
|
3257
|
+
}
|
|
3258
|
+
|
|
3259
|
+
// Visit a parse tree produced by SnowflakeParser#show_variables.
|
|
3260
|
+
}, {
|
|
3261
|
+
key: "visitShow_variables",
|
|
3262
|
+
value: function visitShow_variables(ctx) {
|
|
3263
|
+
return this.visitChildren(ctx);
|
|
3264
|
+
}
|
|
3265
|
+
|
|
3266
|
+
// Visit a parse tree produced by SnowflakeParser#show_views.
|
|
3267
|
+
}, {
|
|
3268
|
+
key: "visitShow_views",
|
|
3269
|
+
value: function visitShow_views(ctx) {
|
|
3270
|
+
return this.visitChildren(ctx);
|
|
3271
|
+
}
|
|
3272
|
+
|
|
3273
|
+
// Visit a parse tree produced by SnowflakeParser#show_warehouses.
|
|
3274
|
+
}, {
|
|
3275
|
+
key: "visitShow_warehouses",
|
|
3276
|
+
value: function visitShow_warehouses(ctx) {
|
|
3277
|
+
return this.visitChildren(ctx);
|
|
3278
|
+
}
|
|
3279
|
+
|
|
3280
|
+
// Visit a parse tree produced by SnowflakeParser#like_pattern.
|
|
3281
|
+
}, {
|
|
3282
|
+
key: "visitLike_pattern",
|
|
3283
|
+
value: function visitLike_pattern(ctx) {
|
|
3284
|
+
return this.visitChildren(ctx);
|
|
3285
|
+
}
|
|
3286
|
+
|
|
3287
|
+
// Visit a parse tree produced by SnowflakeParser#account_identifier.
|
|
3288
|
+
}, {
|
|
3289
|
+
key: "visitAccount_identifier",
|
|
3290
|
+
value: function visitAccount_identifier(ctx) {
|
|
3291
|
+
return this.visitChildren(ctx);
|
|
3292
|
+
}
|
|
3293
|
+
|
|
3294
|
+
// Visit a parse tree produced by SnowflakeParser#schema_name.
|
|
3295
|
+
}, {
|
|
3296
|
+
key: "visitSchema_name",
|
|
3297
|
+
value: function visitSchema_name(ctx) {
|
|
3298
|
+
return this.visitChildren(ctx);
|
|
3299
|
+
}
|
|
3300
|
+
|
|
3301
|
+
// Visit a parse tree produced by SnowflakeParser#object_type.
|
|
3302
|
+
}, {
|
|
3303
|
+
key: "visitObject_type",
|
|
3304
|
+
value: function visitObject_type(ctx) {
|
|
3305
|
+
return this.visitChildren(ctx);
|
|
3306
|
+
}
|
|
3307
|
+
|
|
3308
|
+
// Visit a parse tree produced by SnowflakeParser#object_type_list.
|
|
3309
|
+
}, {
|
|
3310
|
+
key: "visitObject_type_list",
|
|
3311
|
+
value: function visitObject_type_list(ctx) {
|
|
3312
|
+
return this.visitChildren(ctx);
|
|
3313
|
+
}
|
|
3314
|
+
|
|
3315
|
+
// Visit a parse tree produced by SnowflakeParser#tag_value.
|
|
3316
|
+
}, {
|
|
3317
|
+
key: "visitTag_value",
|
|
3318
|
+
value: function visitTag_value(ctx) {
|
|
3319
|
+
return this.visitChildren(ctx);
|
|
3320
|
+
}
|
|
3321
|
+
|
|
3322
|
+
// Visit a parse tree produced by SnowflakeParser#arg_data_type.
|
|
3323
|
+
}, {
|
|
3324
|
+
key: "visitArg_data_type",
|
|
3325
|
+
value: function visitArg_data_type(ctx) {
|
|
3326
|
+
return this.visitChildren(ctx);
|
|
3327
|
+
}
|
|
3328
|
+
|
|
3329
|
+
// Visit a parse tree produced by SnowflakeParser#arg_name.
|
|
3330
|
+
}, {
|
|
3331
|
+
key: "visitArg_name",
|
|
3332
|
+
value: function visitArg_name(ctx) {
|
|
3333
|
+
return this.visitChildren(ctx);
|
|
3334
|
+
}
|
|
3335
|
+
|
|
3336
|
+
// Visit a parse tree produced by SnowflakeParser#param_name.
|
|
3337
|
+
}, {
|
|
3338
|
+
key: "visitParam_name",
|
|
3339
|
+
value: function visitParam_name(ctx) {
|
|
3340
|
+
return this.visitChildren(ctx);
|
|
3341
|
+
}
|
|
3342
|
+
|
|
3343
|
+
// Visit a parse tree produced by SnowflakeParser#region_group_id.
|
|
3344
|
+
}, {
|
|
3345
|
+
key: "visitRegion_group_id",
|
|
3346
|
+
value: function visitRegion_group_id(ctx) {
|
|
3347
|
+
return this.visitChildren(ctx);
|
|
3348
|
+
}
|
|
3349
|
+
|
|
3350
|
+
// Visit a parse tree produced by SnowflakeParser#snowflake_region_id.
|
|
3351
|
+
}, {
|
|
3352
|
+
key: "visitSnowflake_region_id",
|
|
3353
|
+
value: function visitSnowflake_region_id(ctx) {
|
|
3354
|
+
return this.visitChildren(ctx);
|
|
3355
|
+
}
|
|
3356
|
+
|
|
3357
|
+
// Visit a parse tree produced by SnowflakeParser#string.
|
|
3358
|
+
}, {
|
|
3359
|
+
key: "visitString",
|
|
3360
|
+
value: function visitString(ctx) {
|
|
3361
|
+
return this.visitChildren(ctx);
|
|
3362
|
+
}
|
|
3363
|
+
|
|
3364
|
+
// Visit a parse tree produced by SnowflakeParser#string_list.
|
|
3365
|
+
}, {
|
|
3366
|
+
key: "visitString_list",
|
|
3367
|
+
value: function visitString_list(ctx) {
|
|
3368
|
+
return this.visitChildren(ctx);
|
|
3369
|
+
}
|
|
3370
|
+
|
|
3371
|
+
// Visit a parse tree produced by SnowflakeParser#id_fn.
|
|
3372
|
+
}, {
|
|
3373
|
+
key: "visitId_fn",
|
|
3374
|
+
value: function visitId_fn(ctx) {
|
|
3375
|
+
return this.visitChildren(ctx);
|
|
3376
|
+
}
|
|
3377
|
+
|
|
3378
|
+
// Visit a parse tree produced by SnowflakeParser#id_.
|
|
3379
|
+
}, {
|
|
3380
|
+
key: "visitId_",
|
|
3381
|
+
value: function visitId_(ctx) {
|
|
3382
|
+
return this.visitChildren(ctx);
|
|
3383
|
+
}
|
|
3384
|
+
|
|
3385
|
+
// Visit a parse tree produced by SnowflakeParser#keyword.
|
|
3386
|
+
}, {
|
|
3387
|
+
key: "visitKeyword",
|
|
3388
|
+
value: function visitKeyword(ctx) {
|
|
3389
|
+
return this.visitChildren(ctx);
|
|
3390
|
+
}
|
|
3391
|
+
|
|
3392
|
+
// Visit a parse tree produced by SnowflakeParser#non_reserved_words.
|
|
3393
|
+
}, {
|
|
3394
|
+
key: "visitNon_reserved_words",
|
|
3395
|
+
value: function visitNon_reserved_words(ctx) {
|
|
3396
|
+
return this.visitChildren(ctx);
|
|
3397
|
+
}
|
|
3398
|
+
|
|
3399
|
+
// Visit a parse tree produced by SnowflakeParser#builtin_function.
|
|
3400
|
+
}, {
|
|
3401
|
+
key: "visitBuiltin_function",
|
|
3402
|
+
value: function visitBuiltin_function(ctx) {
|
|
3403
|
+
return this.visitChildren(ctx);
|
|
3404
|
+
}
|
|
3405
|
+
|
|
3406
|
+
// Visit a parse tree produced by SnowflakeParser#unary_or_binary_builtin_function.
|
|
3407
|
+
}, {
|
|
3408
|
+
key: "visitUnary_or_binary_builtin_function",
|
|
3409
|
+
value: function visitUnary_or_binary_builtin_function(ctx) {
|
|
3410
|
+
return this.visitChildren(ctx);
|
|
3411
|
+
}
|
|
3412
|
+
|
|
3413
|
+
// Visit a parse tree produced by SnowflakeParser#binary_builtin_function.
|
|
3414
|
+
}, {
|
|
3415
|
+
key: "visitBinary_builtin_function",
|
|
3416
|
+
value: function visitBinary_builtin_function(ctx) {
|
|
3417
|
+
return this.visitChildren(ctx);
|
|
3418
|
+
}
|
|
3419
|
+
|
|
3420
|
+
// Visit a parse tree produced by SnowflakeParser#binary_or_ternary_builtin_function.
|
|
3421
|
+
}, {
|
|
3422
|
+
key: "visitBinary_or_ternary_builtin_function",
|
|
3423
|
+
value: function visitBinary_or_ternary_builtin_function(ctx) {
|
|
3424
|
+
return this.visitChildren(ctx);
|
|
3425
|
+
}
|
|
3426
|
+
|
|
3427
|
+
// Visit a parse tree produced by SnowflakeParser#ternary_builtin_function.
|
|
3428
|
+
}, {
|
|
3429
|
+
key: "visitTernary_builtin_function",
|
|
3430
|
+
value: function visitTernary_builtin_function(ctx) {
|
|
3431
|
+
return this.visitChildren(ctx);
|
|
3432
|
+
}
|
|
3433
|
+
|
|
3434
|
+
// Visit a parse tree produced by SnowflakeParser#list_function.
|
|
3435
|
+
}, {
|
|
3436
|
+
key: "visitList_function",
|
|
3437
|
+
value: function visitList_function(ctx) {
|
|
3438
|
+
return this.visitChildren(ctx);
|
|
3439
|
+
}
|
|
3440
|
+
|
|
3441
|
+
// Visit a parse tree produced by SnowflakeParser#pattern.
|
|
3442
|
+
}, {
|
|
3443
|
+
key: "visitPattern",
|
|
3444
|
+
value: function visitPattern(ctx) {
|
|
3445
|
+
return this.visitChildren(ctx);
|
|
3446
|
+
}
|
|
3447
|
+
|
|
3448
|
+
// Visit a parse tree produced by SnowflakeParser#column_name.
|
|
3449
|
+
}, {
|
|
3450
|
+
key: "visitColumn_name",
|
|
3451
|
+
value: function visitColumn_name(ctx) {
|
|
3452
|
+
return this.visitChildren(ctx);
|
|
3453
|
+
}
|
|
3454
|
+
|
|
3455
|
+
// Visit a parse tree produced by SnowflakeParser#column_list.
|
|
3456
|
+
}, {
|
|
3457
|
+
key: "visitColumn_list",
|
|
3458
|
+
value: function visitColumn_list(ctx) {
|
|
3459
|
+
return this.visitChildren(ctx);
|
|
3460
|
+
}
|
|
3461
|
+
|
|
3462
|
+
// Visit a parse tree produced by SnowflakeParser#column_list_with_comment.
|
|
3463
|
+
}, {
|
|
3464
|
+
key: "visitColumn_list_with_comment",
|
|
3465
|
+
value: function visitColumn_list_with_comment(ctx) {
|
|
3466
|
+
return this.visitChildren(ctx);
|
|
3467
|
+
}
|
|
3468
|
+
|
|
3469
|
+
// Visit a parse tree produced by SnowflakeParser#object_name.
|
|
3470
|
+
}, {
|
|
3471
|
+
key: "visitObject_name",
|
|
3472
|
+
value: function visitObject_name(ctx) {
|
|
3473
|
+
return this.visitChildren(ctx);
|
|
3474
|
+
}
|
|
3475
|
+
|
|
3476
|
+
// Visit a parse tree produced by SnowflakeParser#object_name_or_identifier.
|
|
3477
|
+
}, {
|
|
3478
|
+
key: "visitObject_name_or_identifier",
|
|
3479
|
+
value: function visitObject_name_or_identifier(ctx) {
|
|
3480
|
+
return this.visitChildren(ctx);
|
|
3481
|
+
}
|
|
3482
|
+
|
|
3483
|
+
// Visit a parse tree produced by SnowflakeParser#num.
|
|
3484
|
+
}, {
|
|
3485
|
+
key: "visitNum",
|
|
3486
|
+
value: function visitNum(ctx) {
|
|
3487
|
+
return this.visitChildren(ctx);
|
|
3488
|
+
}
|
|
3489
|
+
|
|
3490
|
+
// Visit a parse tree produced by SnowflakeParser#expr_list.
|
|
3491
|
+
}, {
|
|
3492
|
+
key: "visitExpr_list",
|
|
3493
|
+
value: function visitExpr_list(ctx) {
|
|
3494
|
+
return this.visitChildren(ctx);
|
|
3495
|
+
}
|
|
3496
|
+
|
|
3497
|
+
// Visit a parse tree produced by SnowflakeParser#expr_list_sorted.
|
|
3498
|
+
}, {
|
|
3499
|
+
key: "visitExpr_list_sorted",
|
|
3500
|
+
value: function visitExpr_list_sorted(ctx) {
|
|
3501
|
+
return this.visitChildren(ctx);
|
|
3502
|
+
}
|
|
3503
|
+
|
|
3504
|
+
// Visit a parse tree produced by SnowflakeParser#expr.
|
|
3505
|
+
}, {
|
|
3506
|
+
key: "visitExpr",
|
|
3507
|
+
value: function visitExpr(ctx) {
|
|
3508
|
+
return this.visitChildren(ctx);
|
|
3509
|
+
}
|
|
3510
|
+
|
|
3511
|
+
// Visit a parse tree produced by SnowflakeParser#iff_expr.
|
|
3512
|
+
}, {
|
|
3513
|
+
key: "visitIff_expr",
|
|
3514
|
+
value: function visitIff_expr(ctx) {
|
|
3515
|
+
return this.visitChildren(ctx);
|
|
3516
|
+
}
|
|
3517
|
+
|
|
3518
|
+
// Visit a parse tree produced by SnowflakeParser#trim_expression.
|
|
3519
|
+
}, {
|
|
3520
|
+
key: "visitTrim_expression",
|
|
3521
|
+
value: function visitTrim_expression(ctx) {
|
|
3522
|
+
return this.visitChildren(ctx);
|
|
3523
|
+
}
|
|
3524
|
+
|
|
3525
|
+
// Visit a parse tree produced by SnowflakeParser#try_cast_expr.
|
|
3526
|
+
}, {
|
|
3527
|
+
key: "visitTry_cast_expr",
|
|
3528
|
+
value: function visitTry_cast_expr(ctx) {
|
|
3529
|
+
return this.visitChildren(ctx);
|
|
3530
|
+
}
|
|
3531
|
+
|
|
3532
|
+
// Visit a parse tree produced by SnowflakeParser#cast_expr.
|
|
3533
|
+
}, {
|
|
3534
|
+
key: "visitCast_expr",
|
|
3535
|
+
value: function visitCast_expr(ctx) {
|
|
3536
|
+
return this.visitChildren(ctx);
|
|
3537
|
+
}
|
|
3538
|
+
|
|
3539
|
+
// Visit a parse tree produced by SnowflakeParser#json_literal.
|
|
3540
|
+
}, {
|
|
3541
|
+
key: "visitJson_literal",
|
|
3542
|
+
value: function visitJson_literal(ctx) {
|
|
3543
|
+
return this.visitChildren(ctx);
|
|
3544
|
+
}
|
|
3545
|
+
|
|
3546
|
+
// Visit a parse tree produced by SnowflakeParser#kv_pair.
|
|
3547
|
+
}, {
|
|
3548
|
+
key: "visitKv_pair",
|
|
3549
|
+
value: function visitKv_pair(ctx) {
|
|
3550
|
+
return this.visitChildren(ctx);
|
|
3551
|
+
}
|
|
3552
|
+
|
|
3553
|
+
// Visit a parse tree produced by SnowflakeParser#value.
|
|
3554
|
+
}, {
|
|
3555
|
+
key: "visitValue",
|
|
3556
|
+
value: function visitValue(ctx) {
|
|
3557
|
+
return this.visitChildren(ctx);
|
|
3558
|
+
}
|
|
3559
|
+
|
|
3560
|
+
// Visit a parse tree produced by SnowflakeParser#arr_literal.
|
|
3561
|
+
}, {
|
|
3562
|
+
key: "visitArr_literal",
|
|
3563
|
+
value: function visitArr_literal(ctx) {
|
|
3564
|
+
return this.visitChildren(ctx);
|
|
3565
|
+
}
|
|
3566
|
+
|
|
3567
|
+
// Visit a parse tree produced by SnowflakeParser#data_type_size.
|
|
3568
|
+
}, {
|
|
3569
|
+
key: "visitData_type_size",
|
|
3570
|
+
value: function visitData_type_size(ctx) {
|
|
3571
|
+
return this.visitChildren(ctx);
|
|
3572
|
+
}
|
|
3573
|
+
|
|
3574
|
+
// Visit a parse tree produced by SnowflakeParser#data_type.
|
|
3575
|
+
}, {
|
|
3576
|
+
key: "visitData_type",
|
|
3577
|
+
value: function visitData_type(ctx) {
|
|
3578
|
+
return this.visitChildren(ctx);
|
|
3579
|
+
}
|
|
3580
|
+
|
|
3581
|
+
// Visit a parse tree produced by SnowflakeParser#primitive_expression.
|
|
3582
|
+
}, {
|
|
3583
|
+
key: "visitPrimitive_expression",
|
|
3584
|
+
value: function visitPrimitive_expression(ctx) {
|
|
3585
|
+
return this.visitChildren(ctx);
|
|
3586
|
+
}
|
|
3587
|
+
|
|
3588
|
+
// Visit a parse tree produced by SnowflakeParser#order_by_expr.
|
|
3589
|
+
}, {
|
|
3590
|
+
key: "visitOrder_by_expr",
|
|
3591
|
+
value: function visitOrder_by_expr(ctx) {
|
|
3592
|
+
return this.visitChildren(ctx);
|
|
3593
|
+
}
|
|
3594
|
+
|
|
3595
|
+
// Visit a parse tree produced by SnowflakeParser#asc_desc.
|
|
3596
|
+
}, {
|
|
3597
|
+
key: "visitAsc_desc",
|
|
3598
|
+
value: function visitAsc_desc(ctx) {
|
|
3599
|
+
return this.visitChildren(ctx);
|
|
3600
|
+
}
|
|
3601
|
+
|
|
3602
|
+
// Visit a parse tree produced by SnowflakeParser#over_clause.
|
|
3603
|
+
}, {
|
|
3604
|
+
key: "visitOver_clause",
|
|
3605
|
+
value: function visitOver_clause(ctx) {
|
|
3606
|
+
return this.visitChildren(ctx);
|
|
3607
|
+
}
|
|
3608
|
+
|
|
3609
|
+
// Visit a parse tree produced by SnowflakeParser#function_call.
|
|
3610
|
+
}, {
|
|
3611
|
+
key: "visitFunction_call",
|
|
3612
|
+
value: function visitFunction_call(ctx) {
|
|
3613
|
+
return this.visitChildren(ctx);
|
|
3614
|
+
}
|
|
3615
|
+
|
|
3616
|
+
// Visit a parse tree produced by SnowflakeParser#param_assoc_list.
|
|
3617
|
+
}, {
|
|
3618
|
+
key: "visitParam_assoc_list",
|
|
3619
|
+
value: function visitParam_assoc_list(ctx) {
|
|
3620
|
+
return this.visitChildren(ctx);
|
|
3621
|
+
}
|
|
3622
|
+
|
|
3623
|
+
// Visit a parse tree produced by SnowflakeParser#param_assoc.
|
|
3624
|
+
}, {
|
|
3625
|
+
key: "visitParam_assoc",
|
|
3626
|
+
value: function visitParam_assoc(ctx) {
|
|
3627
|
+
return this.visitChildren(ctx);
|
|
3628
|
+
}
|
|
3629
|
+
|
|
3630
|
+
// Visit a parse tree produced by SnowflakeParser#ignore_or_repect_nulls.
|
|
3631
|
+
}, {
|
|
3632
|
+
key: "visitIgnore_or_repect_nulls",
|
|
3633
|
+
value: function visitIgnore_or_repect_nulls(ctx) {
|
|
3634
|
+
return this.visitChildren(ctx);
|
|
3635
|
+
}
|
|
3636
|
+
|
|
3637
|
+
// Visit a parse tree produced by SnowflakeParser#ranking_windowed_function.
|
|
3638
|
+
}, {
|
|
3639
|
+
key: "visitRanking_windowed_function",
|
|
3640
|
+
value: function visitRanking_windowed_function(ctx) {
|
|
3641
|
+
return this.visitChildren(ctx);
|
|
3642
|
+
}
|
|
3643
|
+
|
|
3644
|
+
// Visit a parse tree produced by SnowflakeParser#aggregate_function.
|
|
3645
|
+
}, {
|
|
3646
|
+
key: "visitAggregate_function",
|
|
3647
|
+
value: function visitAggregate_function(ctx) {
|
|
3648
|
+
return this.visitChildren(ctx);
|
|
3649
|
+
}
|
|
3650
|
+
|
|
3651
|
+
// Visit a parse tree produced by SnowflakeParser#literal.
|
|
3652
|
+
}, {
|
|
3653
|
+
key: "visitLiteral",
|
|
3654
|
+
value: function visitLiteral(ctx) {
|
|
3655
|
+
return this.visitChildren(ctx);
|
|
3656
|
+
}
|
|
3657
|
+
|
|
3658
|
+
// Visit a parse tree produced by SnowflakeParser#sign.
|
|
3659
|
+
}, {
|
|
3660
|
+
key: "visitSign",
|
|
3661
|
+
value: function visitSign(ctx) {
|
|
3662
|
+
return this.visitChildren(ctx);
|
|
3663
|
+
}
|
|
3664
|
+
|
|
3665
|
+
// Visit a parse tree produced by SnowflakeParser#full_column_name.
|
|
3666
|
+
}, {
|
|
3667
|
+
key: "visitFull_column_name",
|
|
3668
|
+
value: function visitFull_column_name(ctx) {
|
|
3669
|
+
return this.visitChildren(ctx);
|
|
3670
|
+
}
|
|
3671
|
+
|
|
3672
|
+
// Visit a parse tree produced by SnowflakeParser#bracket_expression.
|
|
3673
|
+
}, {
|
|
3674
|
+
key: "visitBracket_expression",
|
|
3675
|
+
value: function visitBracket_expression(ctx) {
|
|
3676
|
+
return this.visitChildren(ctx);
|
|
3677
|
+
}
|
|
3678
|
+
|
|
3679
|
+
// Visit a parse tree produced by SnowflakeParser#case_expression.
|
|
3680
|
+
}, {
|
|
3681
|
+
key: "visitCase_expression",
|
|
3682
|
+
value: function visitCase_expression(ctx) {
|
|
3683
|
+
return this.visitChildren(ctx);
|
|
3684
|
+
}
|
|
3685
|
+
|
|
3686
|
+
// Visit a parse tree produced by SnowflakeParser#switch_search_condition_section.
|
|
3687
|
+
}, {
|
|
3688
|
+
key: "visitSwitch_search_condition_section",
|
|
3689
|
+
value: function visitSwitch_search_condition_section(ctx) {
|
|
3690
|
+
return this.visitChildren(ctx);
|
|
3691
|
+
}
|
|
3692
|
+
|
|
3693
|
+
// Visit a parse tree produced by SnowflakeParser#switch_section.
|
|
3694
|
+
}, {
|
|
3695
|
+
key: "visitSwitch_section",
|
|
3696
|
+
value: function visitSwitch_section(ctx) {
|
|
3697
|
+
return this.visitChildren(ctx);
|
|
3698
|
+
}
|
|
3699
|
+
|
|
3700
|
+
// Visit a parse tree produced by SnowflakeParser#query_statement.
|
|
3701
|
+
}, {
|
|
3702
|
+
key: "visitQuery_statement",
|
|
3703
|
+
value: function visitQuery_statement(ctx) {
|
|
3704
|
+
return this.visitChildren(ctx);
|
|
3705
|
+
}
|
|
3706
|
+
|
|
3707
|
+
// Visit a parse tree produced by SnowflakeParser#with_expression.
|
|
3708
|
+
}, {
|
|
3709
|
+
key: "visitWith_expression",
|
|
3710
|
+
value: function visitWith_expression(ctx) {
|
|
3711
|
+
return this.visitChildren(ctx);
|
|
3712
|
+
}
|
|
3713
|
+
|
|
3714
|
+
// Visit a parse tree produced by SnowflakeParser#common_table_expression.
|
|
3715
|
+
}, {
|
|
3716
|
+
key: "visitCommon_table_expression",
|
|
3717
|
+
value: function visitCommon_table_expression(ctx) {
|
|
3718
|
+
return this.visitChildren(ctx);
|
|
3719
|
+
}
|
|
3720
|
+
|
|
3721
|
+
// Visit a parse tree produced by SnowflakeParser#select_statement.
|
|
3722
|
+
}, {
|
|
3723
|
+
key: "visitSelect_statement",
|
|
3724
|
+
value: function visitSelect_statement(ctx) {
|
|
3725
|
+
return this.visitChildren(ctx);
|
|
3726
|
+
}
|
|
3727
|
+
|
|
3728
|
+
// Visit a parse tree produced by SnowflakeParser#set_operators.
|
|
3729
|
+
}, {
|
|
3730
|
+
key: "visitSet_operators",
|
|
3731
|
+
value: function visitSet_operators(ctx) {
|
|
3732
|
+
return this.visitChildren(ctx);
|
|
3733
|
+
}
|
|
3734
|
+
|
|
3735
|
+
// Visit a parse tree produced by SnowflakeParser#select_optional_clauses.
|
|
3736
|
+
}, {
|
|
3737
|
+
key: "visitSelect_optional_clauses",
|
|
3738
|
+
value: function visitSelect_optional_clauses(ctx) {
|
|
3739
|
+
return this.visitChildren(ctx);
|
|
3740
|
+
}
|
|
3741
|
+
|
|
3742
|
+
// Visit a parse tree produced by SnowflakeParser#select_clause.
|
|
3743
|
+
}, {
|
|
3744
|
+
key: "visitSelect_clause",
|
|
3745
|
+
value: function visitSelect_clause(ctx) {
|
|
3746
|
+
return this.visitChildren(ctx);
|
|
3747
|
+
}
|
|
3748
|
+
|
|
3749
|
+
// Visit a parse tree produced by SnowflakeParser#select_top_clause.
|
|
3750
|
+
}, {
|
|
3751
|
+
key: "visitSelect_top_clause",
|
|
3752
|
+
value: function visitSelect_top_clause(ctx) {
|
|
3753
|
+
return this.visitChildren(ctx);
|
|
3754
|
+
}
|
|
3755
|
+
|
|
3756
|
+
// Visit a parse tree produced by SnowflakeParser#select_list_no_top.
|
|
3757
|
+
}, {
|
|
3758
|
+
key: "visitSelect_list_no_top",
|
|
3759
|
+
value: function visitSelect_list_no_top(ctx) {
|
|
3760
|
+
return this.visitChildren(ctx);
|
|
3761
|
+
}
|
|
3762
|
+
|
|
3763
|
+
// Visit a parse tree produced by SnowflakeParser#select_list_top.
|
|
3764
|
+
}, {
|
|
3765
|
+
key: "visitSelect_list_top",
|
|
3766
|
+
value: function visitSelect_list_top(ctx) {
|
|
3767
|
+
return this.visitChildren(ctx);
|
|
3768
|
+
}
|
|
3769
|
+
|
|
3770
|
+
// Visit a parse tree produced by SnowflakeParser#select_list.
|
|
3771
|
+
}, {
|
|
3772
|
+
key: "visitSelect_list",
|
|
3773
|
+
value: function visitSelect_list(ctx) {
|
|
3774
|
+
return this.visitChildren(ctx);
|
|
3775
|
+
}
|
|
3776
|
+
|
|
3777
|
+
// Visit a parse tree produced by SnowflakeParser#select_list_elem.
|
|
3778
|
+
}, {
|
|
3779
|
+
key: "visitSelect_list_elem",
|
|
3780
|
+
value: function visitSelect_list_elem(ctx) {
|
|
3781
|
+
return this.visitChildren(ctx);
|
|
3782
|
+
}
|
|
3783
|
+
|
|
3784
|
+
// Visit a parse tree produced by SnowflakeParser#column_elem_star.
|
|
3785
|
+
}, {
|
|
3786
|
+
key: "visitColumn_elem_star",
|
|
3787
|
+
value: function visitColumn_elem_star(ctx) {
|
|
3788
|
+
return this.visitChildren(ctx);
|
|
3789
|
+
}
|
|
3790
|
+
|
|
3791
|
+
// Visit a parse tree produced by SnowflakeParser#column_elem.
|
|
3792
|
+
}, {
|
|
3793
|
+
key: "visitColumn_elem",
|
|
3794
|
+
value: function visitColumn_elem(ctx) {
|
|
3795
|
+
return this.visitChildren(ctx);
|
|
3796
|
+
}
|
|
3797
|
+
|
|
3798
|
+
// Visit a parse tree produced by SnowflakeParser#object_name_or_alias.
|
|
3799
|
+
}, {
|
|
3800
|
+
key: "visitObject_name_or_alias",
|
|
3801
|
+
value: function visitObject_name_or_alias(ctx) {
|
|
3802
|
+
return this.visitChildren(ctx);
|
|
3803
|
+
}
|
|
3804
|
+
|
|
3805
|
+
// Visit a parse tree produced by SnowflakeParser#as_alias.
|
|
3806
|
+
}, {
|
|
3807
|
+
key: "visitAs_alias",
|
|
3808
|
+
value: function visitAs_alias(ctx) {
|
|
3809
|
+
return this.visitChildren(ctx);
|
|
3810
|
+
}
|
|
3811
|
+
|
|
3812
|
+
// Visit a parse tree produced by SnowflakeParser#expression_elem.
|
|
3813
|
+
}, {
|
|
3814
|
+
key: "visitExpression_elem",
|
|
3815
|
+
value: function visitExpression_elem(ctx) {
|
|
3816
|
+
return this.visitChildren(ctx);
|
|
3817
|
+
}
|
|
3818
|
+
|
|
3819
|
+
// Visit a parse tree produced by SnowflakeParser#column_position.
|
|
3820
|
+
}, {
|
|
3821
|
+
key: "visitColumn_position",
|
|
3822
|
+
value: function visitColumn_position(ctx) {
|
|
3823
|
+
return this.visitChildren(ctx);
|
|
3824
|
+
}
|
|
3825
|
+
|
|
3826
|
+
// Visit a parse tree produced by SnowflakeParser#all_distinct.
|
|
3827
|
+
}, {
|
|
3828
|
+
key: "visitAll_distinct",
|
|
3829
|
+
value: function visitAll_distinct(ctx) {
|
|
3830
|
+
return this.visitChildren(ctx);
|
|
3831
|
+
}
|
|
3832
|
+
|
|
3833
|
+
// Visit a parse tree produced by SnowflakeParser#top_clause.
|
|
3834
|
+
}, {
|
|
3835
|
+
key: "visitTop_clause",
|
|
3836
|
+
value: function visitTop_clause(ctx) {
|
|
3837
|
+
return this.visitChildren(ctx);
|
|
3838
|
+
}
|
|
3839
|
+
|
|
3840
|
+
// Visit a parse tree produced by SnowflakeParser#into_clause.
|
|
3841
|
+
}, {
|
|
3842
|
+
key: "visitInto_clause",
|
|
3843
|
+
value: function visitInto_clause(ctx) {
|
|
3844
|
+
return this.visitChildren(ctx);
|
|
3845
|
+
}
|
|
3846
|
+
|
|
3847
|
+
// Visit a parse tree produced by SnowflakeParser#var_list.
|
|
3848
|
+
}, {
|
|
3849
|
+
key: "visitVar_list",
|
|
3850
|
+
value: function visitVar_list(ctx) {
|
|
3851
|
+
return this.visitChildren(ctx);
|
|
3852
|
+
}
|
|
3853
|
+
|
|
3854
|
+
// Visit a parse tree produced by SnowflakeParser#var.
|
|
3855
|
+
}, {
|
|
3856
|
+
key: "visitVar",
|
|
3857
|
+
value: function visitVar(ctx) {
|
|
3858
|
+
return this.visitChildren(ctx);
|
|
3859
|
+
}
|
|
3860
|
+
|
|
3861
|
+
// Visit a parse tree produced by SnowflakeParser#from_clause.
|
|
3862
|
+
}, {
|
|
3863
|
+
key: "visitFrom_clause",
|
|
3864
|
+
value: function visitFrom_clause(ctx) {
|
|
3865
|
+
return this.visitChildren(ctx);
|
|
3866
|
+
}
|
|
3867
|
+
|
|
3868
|
+
// Visit a parse tree produced by SnowflakeParser#table_sources.
|
|
3869
|
+
}, {
|
|
3870
|
+
key: "visitTable_sources",
|
|
3871
|
+
value: function visitTable_sources(ctx) {
|
|
3872
|
+
return this.visitChildren(ctx);
|
|
3873
|
+
}
|
|
3874
|
+
|
|
3875
|
+
// Visit a parse tree produced by SnowflakeParser#table_source.
|
|
3876
|
+
}, {
|
|
3877
|
+
key: "visitTable_source",
|
|
3878
|
+
value: function visitTable_source(ctx) {
|
|
3879
|
+
return this.visitChildren(ctx);
|
|
3880
|
+
}
|
|
3881
|
+
|
|
3882
|
+
// Visit a parse tree produced by SnowflakeParser#table_source_item_joined.
|
|
3883
|
+
}, {
|
|
3884
|
+
key: "visitTable_source_item_joined",
|
|
3885
|
+
value: function visitTable_source_item_joined(ctx) {
|
|
3886
|
+
return this.visitChildren(ctx);
|
|
3887
|
+
}
|
|
3888
|
+
|
|
3889
|
+
// Visit a parse tree produced by SnowflakeParser#object_ref.
|
|
3890
|
+
}, {
|
|
3891
|
+
key: "visitObject_ref",
|
|
3892
|
+
value: function visitObject_ref(ctx) {
|
|
3893
|
+
return this.visitChildren(ctx);
|
|
3894
|
+
}
|
|
3895
|
+
|
|
3896
|
+
// Visit a parse tree produced by SnowflakeParser#flatten_table_option.
|
|
3897
|
+
}, {
|
|
3898
|
+
key: "visitFlatten_table_option",
|
|
3899
|
+
value: function visitFlatten_table_option(ctx) {
|
|
3900
|
+
return this.visitChildren(ctx);
|
|
3901
|
+
}
|
|
3902
|
+
|
|
3903
|
+
// Visit a parse tree produced by SnowflakeParser#flatten_table.
|
|
3904
|
+
}, {
|
|
3905
|
+
key: "visitFlatten_table",
|
|
3906
|
+
value: function visitFlatten_table(ctx) {
|
|
3907
|
+
return this.visitChildren(ctx);
|
|
3908
|
+
}
|
|
3909
|
+
|
|
3910
|
+
// Visit a parse tree produced by SnowflakeParser#splited_table.
|
|
3911
|
+
}, {
|
|
3912
|
+
key: "visitSplited_table",
|
|
3913
|
+
value: function visitSplited_table(ctx) {
|
|
3914
|
+
return this.visitChildren(ctx);
|
|
3915
|
+
}
|
|
3916
|
+
|
|
3917
|
+
// Visit a parse tree produced by SnowflakeParser#prior_list.
|
|
3918
|
+
}, {
|
|
3919
|
+
key: "visitPrior_list",
|
|
3920
|
+
value: function visitPrior_list(ctx) {
|
|
3921
|
+
return this.visitChildren(ctx);
|
|
3922
|
+
}
|
|
3923
|
+
|
|
3924
|
+
// Visit a parse tree produced by SnowflakeParser#prior_item.
|
|
3925
|
+
}, {
|
|
3926
|
+
key: "visitPrior_item",
|
|
3927
|
+
value: function visitPrior_item(ctx) {
|
|
3928
|
+
return this.visitChildren(ctx);
|
|
3929
|
+
}
|
|
3930
|
+
|
|
3931
|
+
// Visit a parse tree produced by SnowflakeParser#outer_join.
|
|
3932
|
+
}, {
|
|
3933
|
+
key: "visitOuter_join",
|
|
3934
|
+
value: function visitOuter_join(ctx) {
|
|
3935
|
+
return this.visitChildren(ctx);
|
|
3936
|
+
}
|
|
3937
|
+
|
|
3938
|
+
// Visit a parse tree produced by SnowflakeParser#join_type.
|
|
3939
|
+
}, {
|
|
3940
|
+
key: "visitJoin_type",
|
|
3941
|
+
value: function visitJoin_type(ctx) {
|
|
3942
|
+
return this.visitChildren(ctx);
|
|
3943
|
+
}
|
|
3944
|
+
|
|
3945
|
+
// Visit a parse tree produced by SnowflakeParser#join_clause.
|
|
3946
|
+
}, {
|
|
3947
|
+
key: "visitJoin_clause",
|
|
3948
|
+
value: function visitJoin_clause(ctx) {
|
|
3949
|
+
return this.visitChildren(ctx);
|
|
3950
|
+
}
|
|
3951
|
+
|
|
3952
|
+
// Visit a parse tree produced by SnowflakeParser#at_before.
|
|
3953
|
+
}, {
|
|
3954
|
+
key: "visitAt_before",
|
|
3955
|
+
value: function visitAt_before(ctx) {
|
|
3956
|
+
return this.visitChildren(ctx);
|
|
3957
|
+
}
|
|
3958
|
+
|
|
3959
|
+
// Visit a parse tree produced by SnowflakeParser#end.
|
|
3960
|
+
}, {
|
|
3961
|
+
key: "visitEnd",
|
|
3962
|
+
value: function visitEnd(ctx) {
|
|
3963
|
+
return this.visitChildren(ctx);
|
|
3964
|
+
}
|
|
3965
|
+
|
|
3966
|
+
// Visit a parse tree produced by SnowflakeParser#changes.
|
|
3967
|
+
}, {
|
|
3968
|
+
key: "visitChanges",
|
|
3969
|
+
value: function visitChanges(ctx) {
|
|
3970
|
+
return this.visitChildren(ctx);
|
|
3971
|
+
}
|
|
3972
|
+
|
|
3973
|
+
// Visit a parse tree produced by SnowflakeParser#default_append_only.
|
|
3974
|
+
}, {
|
|
3975
|
+
key: "visitDefault_append_only",
|
|
3976
|
+
value: function visitDefault_append_only(ctx) {
|
|
3977
|
+
return this.visitChildren(ctx);
|
|
3978
|
+
}
|
|
3979
|
+
|
|
3980
|
+
// Visit a parse tree produced by SnowflakeParser#partition_by.
|
|
3981
|
+
}, {
|
|
3982
|
+
key: "visitPartition_by",
|
|
3983
|
+
value: function visitPartition_by(ctx) {
|
|
3984
|
+
return this.visitChildren(ctx);
|
|
3985
|
+
}
|
|
3986
|
+
|
|
3987
|
+
// Visit a parse tree produced by SnowflakeParser#alias.
|
|
3988
|
+
}, {
|
|
3989
|
+
key: "visitAlias",
|
|
3990
|
+
value: function visitAlias(ctx) {
|
|
3991
|
+
return this.visitChildren(ctx);
|
|
3992
|
+
}
|
|
3993
|
+
|
|
3994
|
+
// Visit a parse tree produced by SnowflakeParser#expr_alias_list.
|
|
3995
|
+
}, {
|
|
3996
|
+
key: "visitExpr_alias_list",
|
|
3997
|
+
value: function visitExpr_alias_list(ctx) {
|
|
3998
|
+
return this.visitChildren(ctx);
|
|
3999
|
+
}
|
|
4000
|
+
|
|
4001
|
+
// Visit a parse tree produced by SnowflakeParser#measures.
|
|
4002
|
+
}, {
|
|
4003
|
+
key: "visitMeasures",
|
|
4004
|
+
value: function visitMeasures(ctx) {
|
|
4005
|
+
return this.visitChildren(ctx);
|
|
4006
|
+
}
|
|
4007
|
+
|
|
4008
|
+
// Visit a parse tree produced by SnowflakeParser#match_opts.
|
|
4009
|
+
}, {
|
|
4010
|
+
key: "visitMatch_opts",
|
|
4011
|
+
value: function visitMatch_opts(ctx) {
|
|
4012
|
+
return this.visitChildren(ctx);
|
|
4013
|
+
}
|
|
4014
|
+
|
|
4015
|
+
// Visit a parse tree produced by SnowflakeParser#row_match.
|
|
4016
|
+
}, {
|
|
4017
|
+
key: "visitRow_match",
|
|
4018
|
+
value: function visitRow_match(ctx) {
|
|
4019
|
+
return this.visitChildren(ctx);
|
|
4020
|
+
}
|
|
4021
|
+
|
|
4022
|
+
// Visit a parse tree produced by SnowflakeParser#first_last.
|
|
4023
|
+
}, {
|
|
4024
|
+
key: "visitFirst_last",
|
|
4025
|
+
value: function visitFirst_last(ctx) {
|
|
4026
|
+
return this.visitChildren(ctx);
|
|
4027
|
+
}
|
|
4028
|
+
|
|
4029
|
+
// Visit a parse tree produced by SnowflakeParser#symbol.
|
|
4030
|
+
}, {
|
|
4031
|
+
key: "visitSymbol",
|
|
4032
|
+
value: function visitSymbol(ctx) {
|
|
4033
|
+
return this.visitChildren(ctx);
|
|
4034
|
+
}
|
|
4035
|
+
|
|
4036
|
+
// Visit a parse tree produced by SnowflakeParser#after_match.
|
|
4037
|
+
}, {
|
|
4038
|
+
key: "visitAfter_match",
|
|
4039
|
+
value: function visitAfter_match(ctx) {
|
|
4040
|
+
return this.visitChildren(ctx);
|
|
4041
|
+
}
|
|
4042
|
+
|
|
4043
|
+
// Visit a parse tree produced by SnowflakeParser#symbol_list.
|
|
4044
|
+
}, {
|
|
4045
|
+
key: "visitSymbol_list",
|
|
4046
|
+
value: function visitSymbol_list(ctx) {
|
|
4047
|
+
return this.visitChildren(ctx);
|
|
4048
|
+
}
|
|
4049
|
+
|
|
4050
|
+
// Visit a parse tree produced by SnowflakeParser#define.
|
|
4051
|
+
}, {
|
|
4052
|
+
key: "visitDefine",
|
|
4053
|
+
value: function visitDefine(ctx) {
|
|
4054
|
+
return this.visitChildren(ctx);
|
|
4055
|
+
}
|
|
4056
|
+
|
|
4057
|
+
// Visit a parse tree produced by SnowflakeParser#match_recognize.
|
|
4058
|
+
}, {
|
|
4059
|
+
key: "visitMatch_recognize",
|
|
4060
|
+
value: function visitMatch_recognize(ctx) {
|
|
4061
|
+
return this.visitChildren(ctx);
|
|
4062
|
+
}
|
|
4063
|
+
|
|
4064
|
+
// Visit a parse tree produced by SnowflakeParser#pivot_unpivot.
|
|
4065
|
+
}, {
|
|
4066
|
+
key: "visitPivot_unpivot",
|
|
4067
|
+
value: function visitPivot_unpivot(ctx) {
|
|
4068
|
+
return this.visitChildren(ctx);
|
|
4069
|
+
}
|
|
4070
|
+
|
|
4071
|
+
// Visit a parse tree produced by SnowflakeParser#column_alias_list_in_brackets.
|
|
4072
|
+
}, {
|
|
4073
|
+
key: "visitColumn_alias_list_in_brackets",
|
|
4074
|
+
value: function visitColumn_alias_list_in_brackets(ctx) {
|
|
4075
|
+
return this.visitChildren(ctx);
|
|
4076
|
+
}
|
|
4077
|
+
|
|
4078
|
+
// Visit a parse tree produced by SnowflakeParser#expr_list_in_parentheses.
|
|
4079
|
+
}, {
|
|
4080
|
+
key: "visitExpr_list_in_parentheses",
|
|
4081
|
+
value: function visitExpr_list_in_parentheses(ctx) {
|
|
4082
|
+
return this.visitChildren(ctx);
|
|
4083
|
+
}
|
|
4084
|
+
|
|
4085
|
+
// Visit a parse tree produced by SnowflakeParser#values_table.
|
|
4086
|
+
}, {
|
|
4087
|
+
key: "visitValues_table",
|
|
4088
|
+
value: function visitValues_table(ctx) {
|
|
4089
|
+
return this.visitChildren(ctx);
|
|
4090
|
+
}
|
|
4091
|
+
|
|
4092
|
+
// Visit a parse tree produced by SnowflakeParser#values_table_body.
|
|
4093
|
+
}, {
|
|
4094
|
+
key: "visitValues_table_body",
|
|
4095
|
+
value: function visitValues_table_body(ctx) {
|
|
4096
|
+
return this.visitChildren(ctx);
|
|
4097
|
+
}
|
|
4098
|
+
|
|
4099
|
+
// Visit a parse tree produced by SnowflakeParser#sample_method.
|
|
4100
|
+
}, {
|
|
4101
|
+
key: "visitSample_method",
|
|
4102
|
+
value: function visitSample_method(ctx) {
|
|
4103
|
+
return this.visitChildren(ctx);
|
|
4104
|
+
}
|
|
4105
|
+
|
|
4106
|
+
// Visit a parse tree produced by SnowflakeParser#repeatable_seed.
|
|
4107
|
+
}, {
|
|
4108
|
+
key: "visitRepeatable_seed",
|
|
4109
|
+
value: function visitRepeatable_seed(ctx) {
|
|
4110
|
+
return this.visitChildren(ctx);
|
|
4111
|
+
}
|
|
4112
|
+
|
|
4113
|
+
// Visit a parse tree produced by SnowflakeParser#sample_opts.
|
|
4114
|
+
}, {
|
|
4115
|
+
key: "visitSample_opts",
|
|
4116
|
+
value: function visitSample_opts(ctx) {
|
|
4117
|
+
return this.visitChildren(ctx);
|
|
4118
|
+
}
|
|
4119
|
+
|
|
4120
|
+
// Visit a parse tree produced by SnowflakeParser#sample.
|
|
4121
|
+
}, {
|
|
4122
|
+
key: "visitSample",
|
|
4123
|
+
value: function visitSample(ctx) {
|
|
4124
|
+
return this.visitChildren(ctx);
|
|
4125
|
+
}
|
|
4126
|
+
|
|
4127
|
+
// Visit a parse tree produced by SnowflakeParser#search_condition.
|
|
4128
|
+
}, {
|
|
4129
|
+
key: "visitSearch_condition",
|
|
4130
|
+
value: function visitSearch_condition(ctx) {
|
|
4131
|
+
return this.visitChildren(ctx);
|
|
4132
|
+
}
|
|
4133
|
+
|
|
4134
|
+
// Visit a parse tree produced by SnowflakeParser#comparison_operator.
|
|
4135
|
+
}, {
|
|
4136
|
+
key: "visitComparison_operator",
|
|
4137
|
+
value: function visitComparison_operator(ctx) {
|
|
4138
|
+
return this.visitChildren(ctx);
|
|
4139
|
+
}
|
|
4140
|
+
|
|
4141
|
+
// Visit a parse tree produced by SnowflakeParser#null_not_null.
|
|
4142
|
+
}, {
|
|
4143
|
+
key: "visitNull_not_null",
|
|
4144
|
+
value: function visitNull_not_null(ctx) {
|
|
4145
|
+
return this.visitChildren(ctx);
|
|
4146
|
+
}
|
|
4147
|
+
|
|
4148
|
+
// Visit a parse tree produced by SnowflakeParser#subquery.
|
|
4149
|
+
}, {
|
|
4150
|
+
key: "visitSubquery",
|
|
4151
|
+
value: function visitSubquery(ctx) {
|
|
4152
|
+
return this.visitChildren(ctx);
|
|
4153
|
+
}
|
|
4154
|
+
|
|
4155
|
+
// Visit a parse tree produced by SnowflakeParser#predicate.
|
|
4156
|
+
}, {
|
|
4157
|
+
key: "visitPredicate",
|
|
4158
|
+
value: function visitPredicate(ctx) {
|
|
4159
|
+
return this.visitChildren(ctx);
|
|
4160
|
+
}
|
|
4161
|
+
|
|
4162
|
+
// Visit a parse tree produced by SnowflakeParser#where_clause.
|
|
4163
|
+
}, {
|
|
4164
|
+
key: "visitWhere_clause",
|
|
4165
|
+
value: function visitWhere_clause(ctx) {
|
|
4166
|
+
return this.visitChildren(ctx);
|
|
4167
|
+
}
|
|
4168
|
+
|
|
4169
|
+
// Visit a parse tree produced by SnowflakeParser#group_by_elem.
|
|
4170
|
+
}, {
|
|
4171
|
+
key: "visitGroup_by_elem",
|
|
4172
|
+
value: function visitGroup_by_elem(ctx) {
|
|
4173
|
+
return this.visitChildren(ctx);
|
|
4174
|
+
}
|
|
4175
|
+
|
|
4176
|
+
// Visit a parse tree produced by SnowflakeParser#group_by_list.
|
|
4177
|
+
}, {
|
|
4178
|
+
key: "visitGroup_by_list",
|
|
4179
|
+
value: function visitGroup_by_list(ctx) {
|
|
4180
|
+
return this.visitChildren(ctx);
|
|
4181
|
+
}
|
|
4182
|
+
|
|
4183
|
+
// Visit a parse tree produced by SnowflakeParser#group_by_clause.
|
|
4184
|
+
}, {
|
|
4185
|
+
key: "visitGroup_by_clause",
|
|
4186
|
+
value: function visitGroup_by_clause(ctx) {
|
|
4187
|
+
return this.visitChildren(ctx);
|
|
4188
|
+
}
|
|
4189
|
+
|
|
4190
|
+
// Visit a parse tree produced by SnowflakeParser#having_clause.
|
|
4191
|
+
}, {
|
|
4192
|
+
key: "visitHaving_clause",
|
|
4193
|
+
value: function visitHaving_clause(ctx) {
|
|
4194
|
+
return this.visitChildren(ctx);
|
|
4195
|
+
}
|
|
4196
|
+
|
|
4197
|
+
// Visit a parse tree produced by SnowflakeParser#qualify_clause.
|
|
4198
|
+
}, {
|
|
4199
|
+
key: "visitQualify_clause",
|
|
4200
|
+
value: function visitQualify_clause(ctx) {
|
|
4201
|
+
return this.visitChildren(ctx);
|
|
4202
|
+
}
|
|
4203
|
+
|
|
4204
|
+
// Visit a parse tree produced by SnowflakeParser#order_item.
|
|
4205
|
+
}, {
|
|
4206
|
+
key: "visitOrder_item",
|
|
4207
|
+
value: function visitOrder_item(ctx) {
|
|
4208
|
+
return this.visitChildren(ctx);
|
|
4209
|
+
}
|
|
4210
|
+
|
|
4211
|
+
// Visit a parse tree produced by SnowflakeParser#order_by_clause.
|
|
4212
|
+
}, {
|
|
4213
|
+
key: "visitOrder_by_clause",
|
|
4214
|
+
value: function visitOrder_by_clause(ctx) {
|
|
4215
|
+
return this.visitChildren(ctx);
|
|
4216
|
+
}
|
|
4217
|
+
|
|
4218
|
+
// Visit a parse tree produced by SnowflakeParser#row_rows.
|
|
4219
|
+
}, {
|
|
4220
|
+
key: "visitRow_rows",
|
|
4221
|
+
value: function visitRow_rows(ctx) {
|
|
4222
|
+
return this.visitChildren(ctx);
|
|
4223
|
+
}
|
|
4224
|
+
|
|
4225
|
+
// Visit a parse tree produced by SnowflakeParser#first_next.
|
|
4226
|
+
}, {
|
|
4227
|
+
key: "visitFirst_next",
|
|
4228
|
+
value: function visitFirst_next(ctx) {
|
|
4229
|
+
return this.visitChildren(ctx);
|
|
4230
|
+
}
|
|
4231
|
+
|
|
4232
|
+
// Visit a parse tree produced by SnowflakeParser#limit_clause.
|
|
4233
|
+
}, {
|
|
4234
|
+
key: "visitLimit_clause",
|
|
4235
|
+
value: function visitLimit_clause(ctx) {
|
|
4236
|
+
return this.visitChildren(ctx);
|
|
4237
|
+
}
|
|
4238
|
+
|
|
4239
|
+
// Visit a parse tree produced by SnowflakeParser#round_mode.
|
|
4240
|
+
}, {
|
|
4241
|
+
key: "visitRound_mode",
|
|
4242
|
+
value: function visitRound_mode(ctx) {
|
|
4243
|
+
return this.visitChildren(ctx);
|
|
4244
|
+
}
|
|
4245
|
+
|
|
4246
|
+
// Visit a parse tree produced by SnowflakeParser#round_expr.
|
|
4247
|
+
}, {
|
|
4248
|
+
key: "visitRound_expr",
|
|
4249
|
+
value: function visitRound_expr(ctx) {
|
|
4250
|
+
return this.visitChildren(ctx);
|
|
4251
|
+
}
|
|
4252
|
+
}]);
|
|
4253
|
+
return SnowflakeParserVisitor;
|
|
4254
|
+
}(_antlr["default"].tree.ParseTreeVisitor);
|
|
4255
|
+
exports["default"] = SnowflakeParserVisitor;
|