SQL gen bugfix #2
This commit is contained in:
parent
df195412ac
commit
9e830cfb74
5
dist/utils/sql-generator-grab-concat-str.js
vendored
5
dist/utils/sql-generator-grab-concat-str.js
vendored
@ -3,7 +3,10 @@ export default function sqlGenGrabConcatStr({ alias, field, separator = ",", dis
|
|||||||
if (distinct) {
|
if (distinct) {
|
||||||
gc += `DISTINCT `;
|
gc += `DISTINCT `;
|
||||||
}
|
}
|
||||||
gc += `${field}, '${separator}'`;
|
gc += `${field}'`;
|
||||||
|
if (!distinct) {
|
||||||
|
gc += `, '${separator}`;
|
||||||
|
}
|
||||||
gc += `)`;
|
gc += `)`;
|
||||||
gc += ` AS ${alias}`;
|
gc += ` AS ${alias}`;
|
||||||
return gc;
|
return gc;
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@moduletrace/bun-sqlite",
|
"name": "@moduletrace/bun-sqlite",
|
||||||
"version": "1.1.2",
|
"version": "1.1.3",
|
||||||
"description": "SQLite manager for Bun",
|
"description": "SQLite manager for Bun",
|
||||||
"author": "Benjamin Toby",
|
"author": "Benjamin Toby",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
|
|||||||
@ -17,7 +17,11 @@ export default function sqlGenGrabConcatStr({
|
|||||||
gc += `DISTINCT `;
|
gc += `DISTINCT `;
|
||||||
}
|
}
|
||||||
|
|
||||||
gc += `${field}, '${separator}'`;
|
gc += `${field}'`;
|
||||||
|
|
||||||
|
if (!distinct) {
|
||||||
|
gc += `, '${separator}`;
|
||||||
|
}
|
||||||
gc += `)`;
|
gc += `)`;
|
||||||
gc += ` AS ${alias}`;
|
gc += ` AS ${alias}`;
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user