@gscdump/engine 0.18.1 → 0.18.3
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.
- package/dist/_chunks/engine.mjs +1 -1
- package/package.json +3 -3
package/dist/_chunks/engine.mjs
CHANGED
|
@@ -150,7 +150,7 @@ function dateReplaceClause(table) {
|
|
|
150
150
|
if (!table) return "";
|
|
151
151
|
const dateCols = SCHEMAS[table].columns.filter((c) => c.type === "DATE").map((c) => c.name);
|
|
152
152
|
if (dateCols.length === 0) return "";
|
|
153
|
-
return `REPLACE (${dateCols.map((n) => `strftime(${n}, '%Y-%m-%d') AS ${n}`).join(", ")})`;
|
|
153
|
+
return `REPLACE (${dateCols.map((n) => `strftime(CAST(${n} AS DATE), '%Y-%m-%d') AS ${n}`).join(", ")})`;
|
|
154
154
|
}
|
|
155
155
|
function columnList(table) {
|
|
156
156
|
return SCHEMAS[table].columns.map((c) => c.name).join(", ");
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gscdump/engine",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.18.
|
|
4
|
+
"version": "0.18.3",
|
|
5
5
|
"description": "Append-only Parquet/DuckDB storage engine + planner + adapters for the gscdump pipeline. Node + edge runtimes; opt-in heavy peers.",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Harlan Wilton",
|
|
@@ -169,8 +169,8 @@
|
|
|
169
169
|
"dependencies": {
|
|
170
170
|
"drizzle-orm": "^0.45.2",
|
|
171
171
|
"proper-lockfile": "^4.1.2",
|
|
172
|
-
"gscdump": "0.18.
|
|
173
|
-
"@gscdump/contracts": "0.18.
|
|
172
|
+
"gscdump": "0.18.3",
|
|
173
|
+
"@gscdump/contracts": "0.18.3"
|
|
174
174
|
},
|
|
175
175
|
"devDependencies": {
|
|
176
176
|
"@duckdb/duckdb-wasm": "^1.32.0",
|