diff --git a/clients/mssql/values.go b/clients/mssql/values.go index 161aca329..1e1b767f7 100644 --- a/clients/mssql/values.go +++ b/clients/mssql/values.go @@ -33,6 +33,13 @@ func parseValue(colVal any, colKind columns.Column) (any, error) { return "", fmt.Errorf("failed to cast colVal as time.Time, colVal: '%v', err: %w", colVal, err) } + return _time, nil + case typing.TimestampNTZ.Kind: + _time, err := ext.ParseTimestampNTZFromInterface(colVal) + if err != nil { + return "", fmt.Errorf("failed to cast colVal as time.Time, colVal: '%v', err: %w", colVal, err) + } + return _time, nil case typing.ETime.Kind: if err := colKind.KindDetails.EnsureExtendedTimeDetails(); err != nil {