Skip to content

Commit 02cfe7c

Browse files
authored
Adding support for ntext datatype
1 parent f9a59ba commit 02cfe7c

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2.6.4
2+
current_version = 2.6.5
33
parse = (?P<major>\d+)
44
\.(?P<minor>\d+)
55
\.(?P<patch>\d+)

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2+
# tap-mssql 2.6.5 2024-10-24
3+
* Adding support for ntext to list of valid STRING_TYPES.
4+
15
# tap-mssql 2.6.4 2024-10-24
26
* Update to handle `timestamp` (not a datetime value, a [deprecated](https://learn.microsoft.com/en-us/sql/t-sql/data-types/rowversion-transact-sql?view=sql-server-ver16#remarks) synonym of internal `rowversion`) as string
37
* Add tests for incremental syncing using a `timestamp` column as `replication-key`

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "tap-mssql"
3-
version = "2.6.4"
3+
version = "2.6.5"
44
description = "A pipelinewise compatible tap for connecting Microsoft SQL Server"
55
authors = ["Rob Winters <[email protected]>"]
66
license = "GNU Affero"

tap_mssql/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
"uniqueidentifier",
5252
"nvarchar",
5353
"nchar",
54+
"ntext",
5455
]
5556
)
5657

0 commit comments

Comments
 (0)