CoreyKaylor / Lightning.NET

.NET library for LMDB key-value store
Other
398 stars 82 forks source link

This fixes whole key deletes in a DuplicatesSort database. #95

Closed JasonPunyon closed 7 years ago

JasonPunyon commented 7 years ago

Previously a ValueStructure with null fields was being passed to LMDB for the delete and it was throwing an exception (MDB_BAD_VALSIZE).

LMDB wants a null pointer there (not a ValueStruct with null fields). I added a native overload that accepts an IntPtr instead of ValueStructure for the data item and call it from the appropriate place.

CoreyKaylor commented 7 years ago

Thanks, I'll try to get this pulled in over the weekend. Been busy with both job and personal life stuff the last couple months, but this weekend looks clear.

CoreyKaylor commented 7 years ago

Thanks, had some time to get this in tonight.

JasonPunyon commented 7 years ago

@CoreyKaylor Happy to help.