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.
1 parent 15d9142 commit 1059493Copy full SHA for 1059493
sql/planbuilder/ddl.go
@@ -1312,7 +1312,6 @@ func validateDefaultExprs(col *sql.Column) error {
1312
}
1313
1314
1315
-
1316
return nil
1317
1318
sql/types/enum.go
@@ -233,7 +233,6 @@ func (t EnumType) isStrictMode(ctx context.Context) bool {
233
return false
234
235
236
237
// Equals implements the Type interface.
238
func (t EnumType) Equals(otherType sql.Type) bool {
239
if ot, ok := otherType.(EnumType); ok && t.collation.Equals(ot.collation) && len(t.idxToVal) == len(ot.idxToVal) {
0 commit comments