/** * Backend-NEUTRAL SQL string escaping ([ref] A3 沉底). * * Lives in its own leaf so no adapter has to load another dialect's adapter module to get a pure * string transform (the PG stores used to runtime-import the TiDB tool-result store for exactly * this one function). Zero dialect deps by construction — keep it that way. */ /** Escape SQL LIKE metacharacters (`\`, `%`, `_`) so a value is matched literally (default `\` escape char). */ export declare function escapeLike(s: string): string; //# sourceMappingURL=sql-escape.d.ts.map