JSON experiment.

This commit is contained in:
Nuno Cruces
2025-09-23 13:36:31 +01:00
parent b588d5f991
commit 08f9fc758a
8 changed files with 250 additions and 81 deletions

View File

@@ -496,7 +496,7 @@ func TestStmt(t *testing.T) {
if got := stmt.ColumnBlob(0, nil); string(got) != "true" {
t.Errorf("got %q, want true", got)
}
var got any = 1
var got any
if err := stmt.ColumnJSON(0, &got); err != nil {
t.Error(err)
} else if got != true {