Refactor: redundant type from composite literal (#5604)

This commit is contained in:
Shunsuke Otani 2022-08-15 11:47:26 +09:00 committed by GitHub
parent ba227e8939
commit 3f92b9b0df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 12 deletions

View File

@ -37,18 +37,18 @@ func TestWhereCloneCorruption(t *testing.T) {
func TestNameMatcher(t *testing.T) { func TestNameMatcher(t *testing.T) {
for k, v := range map[string][]string{ for k, v := range map[string][]string{
"table.name": []string{"table", "name"}, "table.name": {"table", "name"},
"`table`.`name`": []string{"table", "name"}, "`table`.`name`": {"table", "name"},
"'table'.'name'": []string{"table", "name"}, "'table'.'name'": {"table", "name"},
"'table'.name": []string{"table", "name"}, "'table'.name": {"table", "name"},
"table1.name_23": []string{"table1", "name_23"}, "table1.name_23": {"table1", "name_23"},
"`table_1`.`name23`": []string{"table_1", "name23"}, "`table_1`.`name23`": {"table_1", "name23"},
"'table23'.'name_1'": []string{"table23", "name_1"}, "'table23'.'name_1'": {"table23", "name_1"},
"'table23'.name1": []string{"table23", "name1"}, "'table23'.name1": {"table23", "name1"},
"'name1'": []string{"", "name1"}, "'name1'": {"", "name1"},
"`name_1`": []string{"", "name_1"}, "`name_1`": {"", "name_1"},
"`Name_1`": []string{"", "Name_1"}, "`Name_1`": {"", "Name_1"},
"`Table`.`nAme`": []string{"Table", "nAme"}, "`Table`.`nAme`": {"Table", "nAme"},
} { } {
if matches := nameMatcher.FindStringSubmatch(k); len(matches) < 3 || matches[1] != v[0] || matches[2] != v[1] { if matches := nameMatcher.FindStringSubmatch(k); len(matches) < 3 || matches[1] != v[0] || matches[2] != v[1] {
t.Errorf("failed to match value: %v, got %v, expect: %v", k, matches, v) t.Errorf("failed to match value: %v, got %v, expect: %v", k, matches, v)