From 85280585c33f3f8364610c4f5a42d3629141ba59 Mon Sep 17 00:00:00 2001 From: Faizaan Madhani Date: Wed, 19 Oct 2022 15:34:32 -0400 Subject: [PATCH] sql: add a subtest directive for `DELETE FROM ... USING` This PR adds a subtest directive for `DELETE FROM ... USING` logictests. Previously, if a `DELETE FROM ... USING` test would fail, it could be mistriaged because it was labeled with an incorrect directive. This fix ensures that tests testing the `DELETE FROM ... USING` functionality have the `delete_using` directive. Epic: CRDB-5498 Release note: None --- pkg/sql/logictest/testdata/logic_test/delete | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/sql/logictest/testdata/logic_test/delete b/pkg/sql/logictest/testdata/logic_test/delete index bb881aa6ea35..d5157f028868 100644 --- a/pkg/sql/logictest/testdata/logic_test/delete +++ b/pkg/sql/logictest/testdata/logic_test/delete @@ -337,6 +337,8 @@ SELECT * FROM a AS OF SYSTEM TIME $ts # Test that USING works. +subtest delete_using + statement ok CREATE TABLE u_a ( a INT NOT NULL PRIMARY KEY,