From 5424e61be4ad6e8982c220834020ee1497eb46a8 Mon Sep 17 00:00:00 2001 From: Richard Newman Date: Fri, 2 Sep 2016 16:23:30 -0700 Subject: [PATCH] Review comment: args -> inputs. --- src/datomish/db.cljc | 4 ++-- test/datomish/tofinoish_test.cljc | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/datomish/db.cljc b/src/datomish/db.cljc index ff4c7d91..1f780627 100644 --- a/src/datomish/db.cljc +++ b/src/datomish/db.cljc @@ -644,14 +644,14 @@ Returns a transduced channel of [result err] pairs. Closes the channel when fully consumed." [db find options] - (let [{:keys [limit order-by args]} options + (let [{:keys [limit order-by inputs]} options parsed (query/parse find) context (-> db query-context (query/options-into-context limit order-by) (query/find-into-context parsed)) row-pair-transducer (projection/row-pair-transducer context) - sql (query/context->sql-string context args) + sql (query/context->sql-string context inputs) chan (chan 50 row-pair-transducer)] (s/