tools: upgrades gofumpt to v0.5.0 (#24637)

This commit is contained in:
Austin Gebauer
2023-12-22 14:36:44 -08:00
committed by GitHub
parent 1cae21fb2f
commit 43c282f15a
4 changed files with 12 additions and 8 deletions

View File

@@ -21,8 +21,10 @@ import (
)
// Verify MSSQLBackend satisfies the correct interfaces
var _ physical.Backend = (*MSSQLBackend)(nil)
var identifierRegex = regexp.MustCompile(`^[\p{L}_][\p{L}\p{Nd}@#$_]*$`)
var (
_ physical.Backend = (*MSSQLBackend)(nil)
identifierRegex = regexp.MustCompile(`^[\p{L}_][\p{L}\p{Nd}@#$_]*$`)
)
type MSSQLBackend struct {
dbTable string