From 743d021f7af2c08ee9e8dc641f6c2f2cc14d3e33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vin=C3=ADcius=20Garcia?= Date: Sat, 17 Dec 2022 14:33:21 -0300 Subject: [PATCH] Improve test by adding comment --- test_adapters.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/test_adapters.go b/test_adapters.go index e2921ae..12e510c 100644 --- a/test_adapters.go +++ b/test_adapters.go @@ -3078,6 +3078,14 @@ func ModifiersTest( c := newTestDB(db, driver) + // The default value of the column "nullable_field" + // is the string: "not_null". + // + // So the tagged struct below should insert passing NULL + // and the untagged should insert not passing any value + // for this column, thus, only the second one should create + // a recording using the default value. + var taggedUser struct { ID uint `ksql:"id"` NullableField *string `ksql:"nullable_field,nullable"`