Commit cd82e90
committed
Remove incorrect
`datastore_insert_bsatn` and `datastore_update_bsatn` will write back to the row buffer
when passed a row with a 0 in an `auto_inc` column.
The Rust imports correctly specify these row pointers as `*mut u8`,
but the C# imports in `bindings.c` were declaring them as `const uint8_t*`.
This commit removes the incorrect `const` qualifiers
from the row pointer arguments in those declarations.const qualifiers on two imports in bindings.c
1 parent f4f698e commit cd82e90
1 file changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
61 | 61 | | |
62 | 62 | | |
63 | 63 | | |
64 | | - | |
| 64 | + | |
65 | 65 | | |
66 | | - | |
| 66 | + | |
67 | 67 | | |
68 | 68 | | |
69 | 69 | | |
| |||
0 commit comments