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
What I expect to see while executing this program is no panic and this in a database:
SELECT *
FROM problem_structs
┌─addr─┬─optional_addr─┬─optional_addr_null─┬─balance─┬─optional_balance─┬─optional_balance_null─┐
│ A │ D │ ᴺᵁᴸᴸ │ 10 │ 10 │ ᴺᵁᴸᴸ │
└──────┴───────────────┴────────────────────┴─────────┴──────────────────┴───────────────────────┘
But instead I got this error panic: reflect: call of reflect.Value.Uint on struct Value on go-clickhouse/ch/chschema/column_gen.go:1399 while trying to insert a row.
The text was updated successfully, but these errors were encountered:
I want to insert structures with arbitrary fields which implement
driver.Valuer
interface.Take a look to the following code:
What I expect to see while executing this program is no panic and this in a database:
But instead I got this error
panic: reflect: call of reflect.Value.Uint on struct Value
ongo-clickhouse/ch/chschema/column_gen.go:1399
while trying to insert a row.The text was updated successfully, but these errors were encountered: