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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sqlcarbon
3
- Version: 0.2.0
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
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "sqlcarbon"
7
- version = "0.2.0"
7
+ version = "0.2.1"
8
8
  description = "Reliable, deterministic SQL Server table-to-table copy tool"
9
9
  readme = "README.md"
10
10
  license = { text = "MIT" }
@@ -26,7 +26,7 @@ from .config_loader import (
26
26
  )
27
27
  from .orchestrator import JobResult, RunSummary, run_plan
28
28
 
29
- __version__ = "0.2.0"
29
+ __version__ = "0.2.1"
30
30
 
31
31
  __all__ = [
32
32
  "MigrationPlan",
@@ -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