@@ -184,15 +184,15 @@ func TestCanFormatISO8601Values(t *testing.T) {
184
184
output := QueryResultToRecords (& input , & PlanetScaleSource {})
185
185
assert .Equal (t , 3 , len (output ))
186
186
row := output [0 ]
187
- assert .Equal (t , "2025-02-14T08:08:08Z " , row ["datetime_created_at" ].(sqltypes.Value ).ToString ())
187
+ assert .Equal (t , "2025-02-14T08:08:08.000000+00:00 " , row ["datetime_created_at" ].(sqltypes.Value ).ToString ())
188
188
assert .Equal (t , "2025-02-14" , row ["date_created_at" ].(sqltypes.Value ).ToString ())
189
- assert .Equal (t , "2025-02-14T08:08:08Z " , row ["timestamp_created_at" ].(sqltypes.Value ).ToString ())
189
+ assert .Equal (t , "2025-02-14T08:08:08.000000+00:00 " , row ["timestamp_created_at" ].(sqltypes.Value ).ToString ())
190
190
nullRow := output [1 ]
191
191
assert .Equal (t , nil , nullRow ["datetime_created_at" ])
192
192
assert .Equal (t , nil , nullRow ["date_created_at" ])
193
193
assert .Equal (t , nil , nullRow ["timestamp_created_at" ])
194
194
zeroRow := output [2 ]
195
- assert .Equal (t , "1970-01-01T00:00:00Z " , zeroRow ["datetime_created_at" ].(sqltypes.Value ).ToString ())
195
+ assert .Equal (t , "1970-01-01T00:00:00.000000+00:00 " , zeroRow ["datetime_created_at" ].(sqltypes.Value ).ToString ())
196
196
assert .Equal (t , "1970-01-01" , zeroRow ["date_created_at" ].(sqltypes.Value ).ToString ())
197
- assert .Equal (t , "1970-01-01T00:00:00Z " , zeroRow ["timestamp_created_at" ].(sqltypes.Value ).ToString ())
197
+ assert .Equal (t , "1970-01-01T00:00:00.000000+00:00 " , zeroRow ["timestamp_created_at" ].(sqltypes.Value ).ToString ())
198
198
}
0 commit comments