cleanup unused symbols

Signed-off-by: Sean Corfield <sean@corfield.org>
This commit is contained in:
Sean Corfield 2025-01-21 15:21:59 -08:00
parent e3fcb3e278
commit 44ca426b78
No known key found for this signature in database
2 changed files with 8 additions and 7 deletions

View file

@ -2,22 +2,23 @@
(ns honey.sql.helpers-test (ns honey.sql.helpers-test
(:refer-clojure :exclude [filter for group-by partition-by set update]) (:refer-clojure :exclude [filter for group-by partition-by set update])
#_{:clj-kondo/ignore [:unused-namespace]}
(:require [clojure.core :as c] (:require [clojure.core :as c]
[clojure.test :refer [deftest is testing]] [clojure.test :refer [deftest is testing]]
[honey.sql :as sql] [honey.sql :as sql]
[honey.sql.helpers :as h [honey.sql.helpers :as h
:refer [add-column add-index alter-table columns create-table create-table-as create-view :refer [add-column alter-table columns create-table create-table-as create-view
create-materialized-view drop-view drop-materialized-view create-materialized-view
create-index create-index
bulk-collect-into 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 filter from full-join
group-by having insert-into replace-into 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 on-duplicate-key-update
order-by over partition-by refresh-materialized-view order-by over partition-by refresh-materialized-view
rename-column rename-table returning right-join returning right-join
select select-distinct select-top select-distinct-top select select-distinct select-top
values where window with with-columns values where window with with-columns
with-data within-group]])) with-data within-group]]))

View file

@ -4,7 +4,7 @@
(:require [clojure.test :refer [deftest is testing]] (:require [clojure.test :refer [deftest is testing]]
[honey.sql :as sql] [honey.sql :as sql]
[honey.sql.helpers :as h [honey.sql.helpers :as h
:refer [select exclude rename from where]])) :refer [select exclude rename from]]))
(deftest select-tests (deftest select-tests
(testing "select, exclude, rename" (testing "select, exclude, rename"