Skip to content

Commit 52d978f

Browse files
alancai98rchowell
authored andcommitted
Add some tests missing from #1492 (#1493)
1 parent 416527c commit 52d978f

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

partiql-types/src/test/kotlin/org/partiql/value/io/PartiQLValueTextWriterTest.kt

+12-3
Original file line numberDiff line numberDiff line change
@@ -362,13 +362,22 @@ class PartiQLValueTextWriterTest {
362362
value = symbolValue(null),
363363
expected = "null",
364364
),
365+
case(
366+
value = dateValue(null),
367+
expected = "null",
368+
),
369+
case(
370+
value = timeValue(null),
371+
expected = "null",
372+
),
373+
case(
374+
value = timestampValue(null),
375+
expected = "null",
376+
),
365377
// TODO CLOB
366378
// TODO BINARY
367379
// TODO BYTE
368380
// TODO BLOB
369-
// TODO DATE
370-
// TODO TIME
371-
// TODO TIMESTAMP
372381
// TODO INTERVAL
373382
)
374383

0 commit comments

Comments
 (0)