From 0f1d9d5be88a51082453800deff80d7176ca5d47 Mon Sep 17 00:00:00 2001 From: Hydrocharged Date: Sat, 23 Nov 2024 03:25:45 +0000 Subject: [PATCH] [ga-format-pr] Run ./format_repo.sh to fix formatting --- sql/types/strings.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sql/types/strings.go b/sql/types/strings.go index fc9da28df0..f9bf6d0fdc 100644 --- a/sql/types/strings.go +++ b/sql/types/strings.go @@ -45,10 +45,10 @@ const ( var ( // ErrLengthTooLarge is thrown when a string's length is too large given the other parameters. - ErrLengthTooLarge = errors.NewKind("length is %v but max allowed is %v") - ErrLengthBeyondLimit = errors.NewKind("string '%v' is too large for column '%v'") - ErrBinaryCollation = errors.NewKind("binary types must have the binary collation: %v") - ErrBadCharsetString = errors.NewKind("invalid string for charset %s: '%v'") + ErrLengthTooLarge = errors.NewKind("length is %v but max allowed is %v") + ErrLengthBeyondLimit = errors.NewKind("string '%v' is too large for column '%v'") + ErrBinaryCollation = errors.NewKind("binary types must have the binary collation: %v") + ErrBadCharsetString = errors.NewKind("invalid string for charset %s: '%v'") TinyText = MustCreateStringWithDefaults(sqltypes.Text, TinyTextBlobMax) Text = MustCreateStringWithDefaults(sqltypes.Text, TextBlobMax)