sql-typechecker 0.0.23 → 0.0.24
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/out/cli.js +1 -1
- package/out/cli.js.map +1 -1
- package/package.json +1 -1
package/out/cli.js
CHANGED
|
@@ -243282,7 +243282,7 @@ function genDeserializeSimpleT(t, literalVar) {
|
|
|
243282
243282
|
} else if (t.name.name === "timestamp with time zone") {
|
|
243283
243283
|
return `Instant.parse(${literalVar})`;
|
|
243284
243284
|
} else if (t.name.name === "timestamp without time zone" || t.name.name === "timestamp") {
|
|
243285
|
-
return `LocalDateTime.parse(${literalVar})`;
|
|
243285
|
+
return `LocalDateTime.parse(${literalVar}.replace(" ", "T"))`;
|
|
243286
243286
|
} else {
|
|
243287
243287
|
return literalVar;
|
|
243288
243288
|
}
|