Improve local defaults and replay candle fetch
This commit is contained in:
parent
b9ad182473
commit
1583a50412
11 changed files with 193 additions and 42 deletions
|
|
@ -327,7 +327,8 @@ const coerceNumber = (value: unknown): unknown => {
|
|||
};
|
||||
|
||||
const quoteString = (value: string): string => {
|
||||
return JSON.stringify(value);
|
||||
const escaped = value.replace(/'/g, "''");
|
||||
return `'${escaped}'`;
|
||||
};
|
||||
|
||||
const normalizeNumericFields = (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue