@@ -26,33 +26,6 @@ var jsonFile = `{
2626 "exampleStatements": ["show variable retry_aborts_internally"],
2727 "examplePrerequisiteStatements": ["set readonly=false", "set autocommit=false"]
2828 },
29- {
30- "name": "SHOW VARIABLE AUTO_BATCH_DML",
31- "executorName": "ClientSideStatementNoParamExecutor",
32- "resultType": "RESULT_SET",
33- "statementType": "SHOW_AUTO_BATCH_DML",
34- "regex": "(?is)\\A\\s*show\\s+variable\\s+auto_batch_dml\\s*\\z",
35- "method": "statementShowAutoBatchDml",
36- "exampleStatements": ["show variable auto_batch_dml"]
37- },
38- {
39- "name": "SHOW VARIABLE AUTO_BATCH_DML_UPDATE_COUNT",
40- "executorName": "ClientSideStatementNoParamExecutor",
41- "resultType": "RESULT_SET",
42- "statementType": "SHOW_AUTO_BATCH_DML_UPDATE_COUNT",
43- "regex": "(?is)\\A\\s*show\\s+variable\\s+auto_batch_dml_update_count\\s*\\z",
44- "method": "statementShowAutoBatchDmlUpdateCount",
45- "exampleStatements": ["show variable auto_batch_dml_update_count"]
46- },
47- {
48- "name": "SHOW VARIABLE AUTO_BATCH_DML_UPDATE_COUNT_VERIFICATION",
49- "executorName": "ClientSideStatementNoParamExecutor",
50- "resultType": "RESULT_SET",
51- "statementType": "SHOW_AUTO_BATCH_DML_UPDATE_COUNT_VERIFICATION",
52- "regex": "(?is)\\A\\s*show\\s+variable\\s+auto_batch_dml_update_count_verification\\s*\\z",
53- "method": "statementShowAutoBatchDmlUpdateCountVerification",
54- "exampleStatements": ["show variable auto_batch_dml_update_count_verification"]
55- },
5629 {
5730 "name": "SHOW VARIABLE AUTOCOMMIT_DML_MODE",
5831 "executorName": "ClientSideStatementNoParamExecutor",
@@ -118,51 +91,6 @@ var jsonFile = `{
11891 "converterName": "ClientSideStatementValueConverters$BooleanConverter"
11992 }
12093 },
121- {
122- "name": "SET AUTO_BATCH_DML = TRUE|FALSE",
123- "executorName": "ClientSideStatementSetExecutor",
124- "resultType": "NO_RESULT",
125- "statementType": "SET_AUTO_BATCH_DML",
126- "regex": "(?is)\\A\\s*set\\s+auto_batch_dml\\s*(?:=)\\s*(.*)\\z",
127- "method": "statementSetAutoBatchDml",
128- "exampleStatements": ["set auto_batch_dml = true", "set auto_batch_dml = false"],
129- "setStatement": {
130- "propertyName": "AUTO_BATCH_DML",
131- "separator": "=",
132- "allowedValues": "(TRUE|FALSE)",
133- "converterName": "ClientSideStatementValueConverters$BooleanConverter"
134- }
135- },
136- {
137- "name": "SET AUTO_BATCH_DML_UPDATE_COUNT = <INT64>",
138- "executorName": "ClientSideStatementSetExecutor",
139- "resultType": "NO_RESULT",
140- "statementType": "SET_AUTO_BATCH_DML_UPDATE_COUNT",
141- "regex": "(?is)\\A\\s*set\\s+auto_batch_dml_update_count\\s*(?:=)\\s*(.*)\\z",
142- "method": "statementSetAutoBatchDmlUpdateCount",
143- "exampleStatements": ["set auto_batch_dml_update_count = 0", "set auto_batch_dml_update_count = 100"],
144- "setStatement": {
145- "propertyName": "AUTO_BATCH_DML_UPDATE_COUNT",
146- "separator": "=",
147- "allowedValues": "(\\d{1,19})",
148- "converterName": "ClientSideStatementValueConverters$LongConverter"
149- }
150- },
151- {
152- "name": "SET AUTO_BATCH_DML_UPDATE_COUNT_VERIFICATION = TRUE|FALSE",
153- "executorName": "ClientSideStatementSetExecutor",
154- "resultType": "NO_RESULT",
155- "statementType": "SET_AUTO_BATCH_DML_UPDATE_COUNT_VERIFICATION",
156- "regex": "(?is)\\A\\s*set\\s+auto_batch_dml_update_count_verification\\s*(?:=)\\s*(.*)\\z",
157- "method": "statementSetAutoBatchDmlUpdateCountVerification",
158- "exampleStatements": ["set auto_batch_dml_update_count_verification = true", "set auto_batch_dml_update_count_verification = false"],
159- "setStatement": {
160- "propertyName": "AUTO_BATCH_DML_UPDATE_COUNT_VERIFICATION",
161- "separator": "=",
162- "allowedValues": "(TRUE|FALSE)",
163- "converterName": "ClientSideStatementValueConverters$BooleanConverter"
164- }
165- },
16694 {
16795 "name": "SET AUTOCOMMIT_DML_MODE = 'PARTITIONED_NON_ATOMIC'|'TRANSACTIONAL'",
16896 "executorName": "ClientSideStatementSetExecutor",
0 commit comments