From f059bbdfa0a0d6efc599cc5bd25ad97f53f3ca08 Mon Sep 17 00:00:00 2001 From: Rafi Shamim Date: Fri, 12 Mar 2021 17:35:20 -0500 Subject: [PATCH] rsg: don't test st_frechetdistance in randomized test Release note: None --- pkg/sql/tests/rsg_test.go | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkg/sql/tests/rsg_test.go b/pkg/sql/tests/rsg_test.go index 4926457cf99d..0b2addd325ac 100644 --- a/pkg/sql/tests/rsg_test.go +++ b/pkg/sql/tests/rsg_test.go @@ -271,8 +271,11 @@ func TestRandomSyntaxFunctions(t *testing.T) { continue } switch lower { - case - "pg_sleep": + case "pg_sleep": + continue + case "st_frechetdistance": + // Calculating the Frechet distance is slow and testing it here + // is not worth it. continue } _, variations := builtins.GetBuiltinProperties(name)