Allow specifying an obj [] or obj list of values for a composite key. This fixes #131
Types of changes
[x] Bugfix (non-breaking change which fixes an issue)
[x] New feature (non-breaking change which adds functionality)
[ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
Checklist
[x] Build and tests pass locally
[x] I have added tests that prove my fix is effective or that my feature works (if appropriate)
[ ] I have added necessary documentation (if appropriate)
Further comments
The composite key must be an array, list or seq of type obj as a composite key may be made up of columns of different types.
Type inference can be used in this case rather than having to box each element, e.g.
Proposed Changes
Allow specifying an
obj []
orobj list
of values for a composite key. This fixes #131Types of changes
Checklist
Further comments
The composite key must be an array, list or seq of type
obj
as a composite key may be made up of columns of different types. Type inference can be used in this case rather than having to box each element, e.g.