From 1411e43c9f90e819dee13dc964e17a8c11837153 Mon Sep 17 00:00:00 2001 From: Shlomi Noach <2607934+shlomi-noach@users.noreply.github.com> Date: Thu, 6 Feb 2025 08:44:20 +0200 Subject: [PATCH] typo Signed-off-by: Shlomi Noach <2607934+shlomi-noach@users.noreply.github.com> --- go/vt/schemadiff/schema_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/vt/schemadiff/schema_test.go b/go/vt/schemadiff/schema_test.go index 78f367c12aa..4170e75d514 100644 --- a/go/vt/schemadiff/schema_test.go +++ b/go/vt/schemadiff/schema_test.go @@ -545,7 +545,7 @@ func TestInvalidSchema(t *testing.T) { schema: "CREATE TABLE t (id int, tm TIME, PRIMARY KEY (id, tm)) PARTITION BY RANGE COLUMNS (tm) (PARTITION p0 VALUES LESS THAN (1))", expectErr: &UnsupportedRangeColumnsTypeError{Table: "t", Column: "tm", Type: "time"}, }, - // constaint names + // constraint names { schema: `create table t1 (id int primary key, CONSTRAINT const_id CHECK (id > 0))`, },