We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
types/strings.go
1 parent 9979526 commit ba7a7ceCopy full SHA for ba7a7ce
sql/types/strings.go
@@ -73,6 +73,9 @@ var (
73
MediumBlob = MustCreateBinary(sqltypes.Blob, MediumTextBlobMax)
74
LongBlob = MustCreateBinary(sqltypes.Blob, LongTextBlobMax)
75
76
+ VarChar = MustCreateStringWithDefaults(sqltypes.VarChar, varcharVarbinaryMax)
77
+ VarBinary = MustCreateBinary(sqltypes.VarBinary, varcharVarbinaryMax)
78
+
79
stringValueType = reflect.TypeOf(string(""))
80
byteValueType = reflect.TypeOf(([]byte)(nil))
81
)
0 commit comments