fix(MySQL Node): Do not replace $ values with null (#17327)

Co-authored-by: Michael Kret <michael.k@radency.com>
This commit is contained in:
Dana
2025-07-24 16:53:52 +02:00
committed by GitHub
parent 251e892a09
commit 4b626e5282
6 changed files with 256 additions and 5 deletions

View File

@@ -46,3 +46,10 @@ export type MysqlNodeCredentials = {
connectTimeout: number;
} & WithSSL &
WithSSHTunnel;
export type ParameterMatch = {
match: string;
index: number;
paramNumber: string;
isName: boolean;
};