Skip to content
Snippets Groups Projects
Commit 55cd18f9 authored by Allen Gilliland's avatar Allen Gilliland
Browse files

update docstring on `table-rows-seq` to reflect the fact that the function...

update docstring on `table-rows-seq` to reflect the fact that the function expects a Map describing the table now.
parent 9cfc3572
Branches
Tags
No related merge requests found
......@@ -206,8 +206,9 @@
(with-connection [_ database]
(f)))")
(table-rows-seq ^clojure.lang.Sequential [this, ^DatabaseInstance database, ^String table-name]
"*OPTIONAL*. Return a sequence of all the rows in a table with a given TABLE-NAME.
(table-rows-seq ^clojure.lang.Sequential [this, ^DatabaseInstance database, ^Map table]
"*OPTIONAL*. Return a sequence of all the rows in a given TABLE.
The TABLE argument is a Map that requires the `:name` key as the table name and optionally uses the `:schema` key for databases that support schemas.
Currently, this is only used for iterating over the values in a `_metabase_metadata` table. As such, the results are not expected to be returned lazily."))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment