/** * SQL Script Detector * Determines if a query string is a "script" (multi-statement, PL block, etc.) * rather than a single statement. */ /** * Detect if a query looks like a multi-statement script or PL block. * * Returns true when: * - Starts with BEGIN, DECLARE, CALL, CREATE PROCEDURE/FUNCTION/TRIGGER/PACKAGE * - Contains multiple top-level statements (semicolons not inside strings/comments) */ export declare function isScriptLike(query: string): boolean; //# sourceMappingURL=sql-detector.d.ts.map