You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: DuckDB.NET.Test/ManagedAppenderTests.cs
+7-4Lines changed: 7 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -236,7 +236,7 @@ public void IntervalValues()
236
236
[Fact]
237
237
publicvoidTemporalValues()
238
238
{
239
-
Command.CommandText="CREATE TABLE managedAppenderTemporal(a Date, b TimeStamp, c TIMESTAMP_NS, d TIMESTAMP_MS, e TIMESTAMP_S, f TIMESTAMPTZ, g TIMETZ);";
239
+
Command.CommandText="CREATE TABLE managedAppenderTemporal(a Date, b TimeStamp, c TIMESTAMP_NS, d TIMESTAMP_MS, e TIMESTAMP_S, f TIMESTAMPTZ, g TIMETZ, h Time);";
varresult=Connection.Query<(DateOnly,DateTime,DateTime,DateTime,DateTime,DateTime,DateTimeOffset)>("SELECT a, b, c, d, e, f, g FROM managedAppenderTemporal").ToList();
258
+
varresult=Connection.Query<(DateOnly,DateTime,DateTime,DateTime,DateTime,DateTime,DateTimeOffset,TimeOnly)>("SELECT a, b, c, d, e, f, g, h FROM managedAppenderTemporal").ToList();
0 commit comments