sql-typechecker 0.0.8 → 0.0.11
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 +5783 -185
- package/out/cli.js.map +3 -3
- package/out/typeparsers.js +1 -1
- package/out/typeparsers.js.map +2 -2
- package/package.json +8 -4
package/out/typeparsers.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
1
2
|
var __create = Object.create;
|
|
2
3
|
var __defProp = Object.defineProperty;
|
|
3
4
|
var __getProtoOf = Object.getPrototypeOf;
|
|
@@ -4624,7 +4625,6 @@ function registerSqlTypecheckerTypeParsers() {
|
|
|
4624
4625
|
import_pg.types.setTypeParser(import_pg.types.builtins.TIME, (val) => val);
|
|
4625
4626
|
import_pg.types.setTypeParser(import_pg.types.builtins.TIMESTAMP, (val) => val);
|
|
4626
4627
|
import_pg.types.setTypeParser(import_pg.types.builtins.TIMESTAMPTZ, (val) => val);
|
|
4627
|
-
import_pg.types.setTypeParser(import_pg.types.builtins.TIMESTAMPTZ, (val) => val);
|
|
4628
4628
|
import_pg.types.setTypeParser(1115, import_postgres_array.default.parse);
|
|
4629
4629
|
import_pg.types.setTypeParser(1182, import_postgres_array.default.parse);
|
|
4630
4630
|
import_pg.types.setTypeParser(1185, import_postgres_array.default.parse);
|