Skip to content
This repository was archived by the owner on Sep 9, 2024. It is now read-only.

Commit a583ab7

Browse files
committed
more comment tweaks
1 parent 6073e8e commit a583ab7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

multimap_multikey_table.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,15 +80,15 @@ func (mm *multimapMkT) WithOptions(o Options) MultimapMkTable {
8080
func (mm *multimapMkT) ListOfEqualRelations(fieldsToIndex, ids map[string]interface{}) []Relation {
8181
relations := make([]Relation, 0)
8282

83-
// TODO: support empty values in composite partition keys
83+
// TODO: support empty string values in composite partition keys
8484
for _, field := range mm.fieldsToIndexBy {
8585
if value := fieldsToIndex[field]; value != nil && value != "" {
8686
relation := Eq(field, value)
8787
relations = append(relations, relation)
8888
}
8989
}
9090

91-
// TODO: support empty values in clustering columns
91+
// TODO: support empty string values in clustering columns
9292
for _, field := range mm.idField {
9393
if value := ids[field]; value != nil && value != "" {
9494
relation := Eq(field, value)

0 commit comments

Comments
 (0)