File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -30,9 +30,6 @@ defmodule Ecto.Adapters.SQL do
3030 * `query!(sql, params, options \\ [])` -
3131 shortcut for `Ecto.Adapters.SQL.query!/4`
3232
33- * `stream!(sql, params, options \\ [])` -
34- shortcut for `Ecto.Adapters.SQL.stream/4`
35-
3633 * `to_sql(type, query, options \\ [])` -
3734 shortcut for `Ecto.Adapters.SQL.to_sql/4`
3835
@@ -605,15 +602,6 @@ defmodule Ecto.Adapters.SQL do
605602 Ecto.Adapters.SQL . query ( get_dynamic_repo ( ) , sql , params , opts )
606603 end
607604
608- @ doc """
609- A convenience function for SQL-based repositories that streams the given query.
610-
611- See `Ecto.Adapters.SQL.stream/4` for more information.
612- """
613- def stream ( sql , params \\ [ ] , opts \\ [ ] ) do
614- Ecto.Adapters.SQL . stream ( get_dynamic_repo ( ) , sql , params , opts )
615- end
616-
617605 @ doc """
618606 A convenience function for SQL-based repositories that executes the given query.
619607
You can’t perform that action at this time.
0 commit comments