From 44ca426b7824721ff5d8daae00259b313cd72187 Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Tue, 21 Jan 2025 15:21:59 -0800 Subject: [PATCH] cleanup unused symbols Signed-off-by: Sean Corfield --- test/honey/sql/helpers_test.cljc | 13 +++++++------ test/honey/sql/xtdb_test.cljc | 2 +- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/test/honey/sql/helpers_test.cljc b/test/honey/sql/helpers_test.cljc index 1819417..79e72f9 100644 --- a/test/honey/sql/helpers_test.cljc +++ b/test/honey/sql/helpers_test.cljc @@ -2,22 +2,23 @@ (ns honey.sql.helpers-test (:refer-clojure :exclude [filter for group-by partition-by set update]) + #_{:clj-kondo/ignore [:unused-namespace]} (:require [clojure.core :as c] [clojure.test :refer [deftest is testing]] [honey.sql :as sql] [honey.sql.helpers :as h - :refer [add-column add-index alter-table columns create-table create-table-as create-view - create-materialized-view drop-view drop-materialized-view + :refer [add-column alter-table columns create-table create-table-as create-view + create-materialized-view create-index bulk-collect-into - cross-join do-update-set drop-column drop-index drop-table + cross-join do-update-set drop-column drop-table filter from full-join group-by having insert-into replace-into - join-by join lateral left-join limit offset on-conflict + join-by join left-join limit offset on-conflict on-duplicate-key-update order-by over partition-by refresh-materialized-view - rename-column rename-table returning right-join - select select-distinct select-top select-distinct-top + returning right-join + select select-distinct select-top values where window with with-columns with-data within-group]])) diff --git a/test/honey/sql/xtdb_test.cljc b/test/honey/sql/xtdb_test.cljc index 654986a..d9a8c35 100644 --- a/test/honey/sql/xtdb_test.cljc +++ b/test/honey/sql/xtdb_test.cljc @@ -4,7 +4,7 @@ (:require [clojure.test :refer [deftest is testing]] [honey.sql :as sql] [honey.sql.helpers :as h - :refer [select exclude rename from where]])) + :refer [select exclude rename from]])) (deftest select-tests (testing "select, exclude, rename"