Skip to content
Snippets Groups Projects
Unverified Commit 357e446c authored by Alexander Polyankin's avatar Alexander Polyankin Committed by GitHub
Browse files

Cache can-run (#39695)

parent 78cb2881
No related branches found
No related tags found
No related merge requests found
......@@ -1288,4 +1288,7 @@
(defn ^:export can-run
"Returns true if the query is runnable."
[a-query]
(lib.core/can-run a-query))
(lib.cache/side-channel-cache
:can-run a-query
(fn [_]
(lib.core/can-run a-query))))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment