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
refactor: TableCreation::builder()::properties accept an IntoIterator (#1233)
## What changes are included in this PR?
`TableCreation::builder().properties()` should be able to accept any
`IntoIterator` type that can be used to build an `HashMap`.
For example, `TableCreation::builder().properties([("foo".to_string(),
"bar".to_string())])` should build a `HashMap` with one key value pair
`foo -> bar`.
## Are these changes tested?
Unittest are provided.
0 commit comments