We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f87a00 commit f497dfeCopy full SHA for f497dfe
1 file changed
src/SQLCollections.jl
@@ -49,6 +49,7 @@ exists(dbc::SQLCollection) =
49
Base.collect(dbc::SQLCollection) = StructArray(dbc)
50
51
Base.eltype(dbc::SQLCollection) = @p dbc first(__, 0) collect eltype
52
+Base.IteratorSize(::Type{<:SQLCollection}) = Base.SizeUnknown()
53
54
(::Type{StructArray})(dbc::SQLCollection) = DBInterface.execute(dbc.conn, dbc.query) |> columntable |> StructArray
55
(::Type{StructVector})(dbc::SQLCollection) = StructArray(dbc)
0 commit comments