Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix-up typo #5158

Merged
merged 1 commit into from
Sep 5, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions go/vt/topotools/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ func SortedTabletMap(tabletMap map[string]*topo.TabletInfo) (map[string]*topo.Ta
return slaveMap, masterMap
}

// CopyMapKeys copies keys from from map m into a new slice with the
// CopyMapKeys copies keys from map m into a new slice with the
// type specified by typeHint. Reflection can't make a new slice type
// just based on the key type AFAICT.
func CopyMapKeys(m interface{}, typeHint interface{}) interface{} {
Expand All @@ -131,7 +131,7 @@ func CopyMapKeys(m interface{}, typeHint interface{}) interface{} {
return keys.Interface()
}

// CopyMapValues copies values from from map m into a new slice with the
// CopyMapValues copies values from map m into a new slice with the
// type specified by typeHint. Reflection can't make a new slice type
// just based on the key type AFAICT.
func CopyMapValues(m interface{}, typeHint interface{}) interface{} {
Expand Down
2 changes: 1 addition & 1 deletion go/vt/vtgate/planbuilder/testdata/wireup_cases.txt
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@
}
}

# Wire-up in in underlying primitive after pullout
# Wire-up in underlying primitive after pullout
"select u.id, e.id, (select col from user) from user u join user_extra e where e.id = u.col limit 10"
{
"Original": "select u.id, e.id, (select col from user) from user u join user_extra e where e.id = u.col limit 10",
Expand Down