feat: update target database type to sqlserver and clean up unused code in mssql.go

This commit is contained in:
2026-04-17 16:29:32 -05:00
parent 846a49d40c
commit 63cf26e1ab
4 changed files with 7 additions and 45 deletions

View File

@@ -43,9 +43,9 @@ func buildExtractQueryMssql(
for i, col := range columns {
fmt.Fprintf(&sbQuery, "[%s]", col.Name())
if col.Type() == "GEOMETRY" {
fmt.Fprintf(&sbQuery, ".STAsBinary() AS [%s]", col.Name())
}
// if col.Type() == "GEOMETRY" {
// fmt.Fprintf(&sbQuery, ".STAsBinary() AS [%s]", col.Name())
// }
if i < len(columns)-1 {
sbQuery.WriteString(", ")