SQL gen bugfix #3

This commit is contained in:
2026-04-18 15:30:18 +01:00
parent 9e830cfb74
commit ca99684183
3 changed files with 6 additions and 5 deletions
+2 -2
View File
@@ -3,9 +3,9 @@ export default function sqlGenGrabConcatStr({ alias, field, separator = ",", dis
if (distinct) {
gc += `DISTINCT `;
}
gc += `${field}'`;
gc += `${field}`;
if (!distinct) {
gc += `, '${separator}`;
gc += `, '${separator}'`;
}
gc += `)`;
gc += ` AS ${alias}`;