-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Closed
Labels
Description
Changes to fix #424 also make nil
slice be converted to zero-length blob. Instead, nil
slice should be converted to value NULL
.
Current code:
[]byte -> zero length blob
nil -> zero length blob
Proposal:
[]byte -> zero length blob
nil -> NULL blob
I can submit a PR if the proposal makes sense to you.