@malloydata/malloy 0.0.40-dev230614162121 → 0.0.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -409,7 +409,7 @@ ${(0, utils_1.indent)(sql)}
|
|
|
409
409
|
}
|
|
410
410
|
sqlLiteralRegexp(literal) {
|
|
411
411
|
const noVirgule = literal.replace(/\\/g, '\\\\');
|
|
412
|
-
return "
|
|
412
|
+
return "'" + noVirgule.replace(/'/g, "\\'") + "'";
|
|
413
413
|
}
|
|
414
414
|
getGlobalFunctionDef(name) {
|
|
415
415
|
return functions_1.STANDARDSQL_FUNCTIONS.get(name);
|