sqlcarbon 0.2.0__tar.gz → 0.2.1__tar.gz
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.
- {sqlcarbon-0.2.0 → sqlcarbon-0.2.1}/PKG-INFO +1 -1
- {sqlcarbon-0.2.0 → sqlcarbon-0.2.1}/pyproject.toml +1 -1
- {sqlcarbon-0.2.0 → sqlcarbon-0.2.1}/sqlcarbon/__init__.py +1 -1
- {sqlcarbon-0.2.0 → sqlcarbon-0.2.1}/sqlcarbon/schema_reader.py +2 -2
- {sqlcarbon-0.2.0 → sqlcarbon-0.2.1}/.claude/settings.local.json +0 -0
- {sqlcarbon-0.2.0 → sqlcarbon-0.2.1}/.gitignore +0 -0
- {sqlcarbon-0.2.0 → sqlcarbon-0.2.1}/README.md +0 -0
- {sqlcarbon-0.2.0 → sqlcarbon-0.2.1}/sqlcarbon/cli.py +0 -0
- {sqlcarbon-0.2.0 → sqlcarbon-0.2.1}/sqlcarbon/config_loader.py +0 -0
- {sqlcarbon-0.2.0 → sqlcarbon-0.2.1}/sqlcarbon/connection.py +0 -0
- {sqlcarbon-0.2.0 → sqlcarbon-0.2.1}/sqlcarbon/copier.py +0 -0
- {sqlcarbon-0.2.0 → sqlcarbon-0.2.1}/sqlcarbon/ddl_generator.py +0 -0
- {sqlcarbon-0.2.0 → sqlcarbon-0.2.1}/sqlcarbon/orchestrator.py +0 -0
- {sqlcarbon-0.2.0 → sqlcarbon-0.2.1}/sqlcarbon/parquet_writer.py +0 -0
- {sqlcarbon-0.2.0 → sqlcarbon-0.2.1}/sqlcarbon/version_checker.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sqlcarbon
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: Reliable, deterministic SQL Server table-to-table copy tool
|
|
5
5
|
Project-URL: Homepage, https://github.com/TroBeeOne/SQLCarbon
|
|
6
6
|
Project-URL: Issues, https://github.com/TroBeeOne/SQLCarbon/issues
|
|
@@ -141,8 +141,8 @@ def read_schema(
|
|
|
141
141
|
ELSE NULL
|
|
142
142
|
END AS datetime_precision,
|
|
143
143
|
c.is_identity,
|
|
144
|
-
ic.seed_value,
|
|
145
|
-
ic.increment_value,
|
|
144
|
+
CAST(ic.seed_value AS bigint),
|
|
145
|
+
CAST(ic.increment_value AS bigint),
|
|
146
146
|
c.is_computed
|
|
147
147
|
FROM sys.columns c
|
|
148
148
|
JOIN sys.types tp
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|