From edef7fb8048a07fc3fef913ccb812d49434bf4c1 Mon Sep 17 00:00:00 2001 From: Alan Cai Date: Tue, 25 Jun 2024 14:03:13 -0700 Subject: [PATCH] Add some tests missing from #1492 (#1493) --- .../value/io/PartiQLValueTextWriterTest.kt | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/partiql-types/src/test/kotlin/org/partiql/value/io/PartiQLValueTextWriterTest.kt b/partiql-types/src/test/kotlin/org/partiql/value/io/PartiQLValueTextWriterTest.kt index 1b5d40495b..6d0783f1f1 100644 --- a/partiql-types/src/test/kotlin/org/partiql/value/io/PartiQLValueTextWriterTest.kt +++ b/partiql-types/src/test/kotlin/org/partiql/value/io/PartiQLValueTextWriterTest.kt @@ -362,13 +362,22 @@ class PartiQLValueTextWriterTest { value = symbolValue(null), expected = "null", ), + case( + value = dateValue(null), + expected = "null", + ), + case( + value = timeValue(null), + expected = "null", + ), + case( + value = timestampValue(null), + expected = "null", + ), // TODO CLOB // TODO BINARY // TODO BYTE // TODO BLOB - // TODO DATE - // TODO TIME - // TODO TIMESTAMP // TODO INTERVAL )