Open adespawn opened 1 week ago
I believe this formulation can be misleading. null
able values of type T
are represented in the Rust driver as Option<T>
, with None
representing the null
value. It's not that null
should be convertible to i32
, but rather to Option<i32>
.
According to
should allow parameters without hints
test, null values should be able to convert to i32.Identify other such types and add support for such conversion.