Skip to content

Commit

Permalink
Merge pull request wintersrd#96 from s7clarke10/add_ntext_type_v2
Browse files Browse the repository at this point in the history
Adding support for ntext datatype
  • Loading branch information
mjsqu authored Oct 24, 2024
2 parents f9a59ba + 02cfe7c commit 505f211
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.6.4
current_version = 2.6.5
parse = (?P<major>\d+)
\.(?P<minor>\d+)
\.(?P<patch>\d+)
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@

# tap-mssql 2.6.5 2024-10-24
* Adding support for ntext to list of valid STRING_TYPES.

# tap-mssql 2.6.4 2024-10-24
* 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
* Add tests for incremental syncing using a `timestamp` column as `replication-key`
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "tap-mssql"
version = "2.6.4"
version = "2.6.5"
description = "A pipelinewise compatible tap for connecting Microsoft SQL Server"
authors = ["Rob Winters <[email protected]>"]
license = "GNU Affero"
Expand Down
1 change: 1 addition & 0 deletions tap_mssql/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
"uniqueidentifier",
"nvarchar",
"nchar",
"ntext",
]
)

Expand Down

0 comments on commit 505f211

Please sign in to comment.