From 1e5557457b3bb3662e3e7bbaec91997856962710 Mon Sep 17 00:00:00 2001 From: fasib Date: Sun, 28 Mar 2021 17:12:30 +0200 Subject: [PATCH] Link to schemaless queries in docstring Change the link for [schemaless Ecto queries] to https://hexdocs.pm/ecto/schemaless-queries.html --- lib/ecto/adapters/sqlite3.ex | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/ecto/adapters/sqlite3.ex b/lib/ecto/adapters/sqlite3.ex index 0a00171..4190418 100644 --- a/lib/ecto/adapters/sqlite3.ex +++ b/lib/ecto/adapters/sqlite3.ex @@ -111,7 +111,7 @@ defmodule Ecto.Adapters.SQLite3 do ### Schemaless queries - Using [schemaless Ecto queries][5] will not work well with SQLite. This is because + Using [schemaless Ecto queries][7] will not work well with SQLite. This is because the Ecto SQLite adapter relies heavily on the schema to support a rich array of Elixir types, despite the fact SQLite only has [five storage classes][5]. The query will still work and return data, but you will need to do this mapping on your own. @@ -120,6 +120,7 @@ defmodule Ecto.Adapters.SQLite3 do [4]: https://www.sqlite.org/whentouse.html [5]: https://www.sqlite.org/datatype3.html [6]: https://www.sqlite.org/datatype3.html#collating_sequences + [7]: https://hexdocs.pm/ecto/schemaless-queries.html """ use Ecto.Adapters.SQL,