From 0ab8fd0c56b1cdd0cbb40f64441209f0adfa519d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CEricZequan=E2=80=9D?= Date: Wed, 7 Aug 2024 12:42:45 +0800 Subject: [PATCH] fix a test fail MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: “EricZequan” --- pkg/expression/integration_test/integration_test.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/expression/integration_test/integration_test.go b/pkg/expression/integration_test/integration_test.go index 246a0ee9a5f6d..6fdfbda53dd4b 100644 --- a/pkg/expression/integration_test/integration_test.go +++ b/pkg/expression/integration_test/integration_test.go @@ -566,7 +566,6 @@ func TestVectorMiscFunctions(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("USE test;") - tk.MustExec("SET @@GLOBAL.TIDB_ENABLE_VECTOR_TYPE=1;") tk.MustExec("CREATE TABLE a(pk INT PRIMARY KEY, c VECTOR(3), time INT);") tk.MustExec("INSERT INTO a VALUES (1, '[1,2,3]', 5);")