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
#502 added the ability to generate auto-id's when not otherwise provided at index time. This change will enable generating UUIDs via the autoid parameter. The logic should support any of the UUID functions available to generate random and deterministic UUIDs.
#502 added the ability to generate auto-id's when not otherwise provided at index time. This change will enable generating UUIDs via the
autoid
parameter. The logic should support any of the UUID functions available to generate random and deterministic UUIDs.For example:
Currently creates an entry as
(0, "test", None)
.and with this change:
Will instead create this entry as
("aa108dc5-442c-458a-8454-8c55f40af25d", "test", None)
.The default method when not specified will continue to be a numeric sequence.
The text was updated successfully, but these errors were encountered: