[ga-format-pr] Run go/utils/repofmt/format_repo.sh and go/Godeps/update.sh

This commit is contained in:
zachmu
2026-02-07 02:16:19 +00:00
parent 71fd4c2e04
commit 7ef81ec08c

View File

@@ -496,8 +496,8 @@ func decodeTableNameForAddressMap(encodedName, schemaName string) (string, bool)
if schemaName == "" && encodedName[0] != 0 {
return encodedName, true
} else if schemaName != "" && encodedName[0] == 0 &&
len(encodedName) > len(schemaName)+2 &&
encodedName[1:len(schemaName)+1] == schemaName {
len(encodedName) > len(schemaName)+2 &&
encodedName[1:len(schemaName)+1] == schemaName {
return encodedName[len(schemaName)+2:], true
}
return "", false