Skip to content

Commit e4d298a

Browse files
committed
Decrease maximum statement count limit in SQL syntax checker from 500 to 200
Signed-off-by: worksofliam <[email protected]>
1 parent 214584d commit e4d298a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/connection/syntaxChecker/checker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export const VALIDATOR_NAME = `VALIDATE_STATEMENT`;
22
export const WRAPPER_NAME = `CHECKSTMTWRAPPED`;
33
export const VALID_STATEMENT_LENGTH = 32740;
4-
export const MAX_STATEMENT_COUNT = 500;
4+
export const MAX_STATEMENT_COUNT = 200;
55

66
export function getValidatorSource(schema: string, version: number) {
77
return /*sql*/`

0 commit comments

Comments
 (0)