Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-ext-simba-jy committed Feb 5, 2025
1 parent c345c77 commit 6ecfcca
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions converter.go
Original file line number Diff line number Diff line change
Expand Up @@ -2747,21 +2747,21 @@ func interfaceSliceToString(interfaceSlice reflect.Value, stream bool, tzType ..

switch tzType[0] {
case TimestampNTZType:
t = timestampTzType
t = timestampNtzType
var v string
if stream {
v = x.Format(format)
} else {
v = convertTimeToTimeStamp(x, t)
v = convertTimeToTimeStamp(x, timestampNtzType)
}
arr = append(arr, &v)
case TimestampLTZType:
t = timestampTzType
t = timestampLtzType
var v string
if stream {
v = x.Format(format)
} else {
v = convertTimeToTimeStamp(x, t)
v = convertTimeToTimeStamp(x, timestampLtzType)
}
arr = append(arr, &v)
case TimestampTZType:
Expand Down

0 comments on commit 6ecfcca

Please sign in to comment.