Open rpodgorny opened 2 years ago
Seems like its this debug_assert that is being hit https://github.com/tmontaigu/dbase-rs/blob/b731e63b5fae3f4e451d7206beb55e6304009f60/src/writing.rs#L365
Since its a debug assert it should not be possible to trigger it in release mode (cargo run --release
), can you try to run your program in release mode and see if the generated file is still valid ?
The assert seems a bit restrictive, what you may see in the output file is some truncated values
hi, i'm trying to write a dbf file (from another dbf) and i keep failing with the following traceback:
(...it goes on but that's not interesting, i guess)
the code is basically this:
...what could be the cause?
thanks!