···62626363## v0.10.3
64646565-- fixed: Handle unique cosntraint error formats.
6666-- changed: Updated depenendencies.
6565+- fixed: Handle unique constraint error formats.
6666+- changed: Updated dependencies.
67676868## v0.10.2
6969···130130- added: `:time` decode support.
131131132132## v0.7.1
133133-- fixed: Backport of default drops to `:restrict` are now backwards compatible with older versions of `ecto_sql`. We don't really have support for `drop index ... cascade` as it is not in the grammer of sqlite.
133133+- fixed: Backport of default drops to `:restrict` are now backwards compatible with older versions of `ecto_sql`. We don't really have support for `drop index ... cascade` as it is not in the grammar of sqlite.
134134135135## v0.7.0
136136- changed: update dependencies to the latest.
+1-1
README.md
···8585mix test
8686```
87878888-Runing integration tests
8888+Running integration tests
89899090```sh
9191EXQLITE_INTEGRATION=true mix test
+1-1
integration_test/test_helper.exs
···81818282 # SQLite will return a string for schemaless map types as
8383 # Ecto does not have enough information to call the associated loader
8484- # that converts the string JSON representaiton into a map
8484+ # that converts the string JSON representation into a map
8585 :map_type_schemaless,
86868787 # right now in lock_for_migrations() we do effectively nothing, this is because
+1-1
lib/ecto/adapters/sqlite3.ex
···124124125125 ### Case sensitivity
126126127127- Case sensitivty for `LIKE` is off by default, and controlled by the `:case_sensitive_like`
127127+ Case sensitivity for `LIKE` is off by default, and controlled by the `:case_sensitive_like`
128128 option outlined above.
129129130130 However, for equality comparison, case sensitivity is always _on_.
···11-defmodule Ecto.Adapters.SQLite3.Connection.ToCosntraintsTest do
11+defmodule Ecto.Adapters.SQLite3.Connection.ToConstraintsTest do
22 use ExUnit.Case, async: true
3344 alias Ecto.Adapters.SQLite3.Connection
···9898 ~s{ORDER BY s0."x")} == all(query)
9999 end
100100101101- test "partition by ond order by over" do
101101+ test "partition by one order by over" do
102102 query =
103103 Schema
104104 |> select([r], count(r.x) |> over(partition_by: [r.x, r.z], order_by: r.x))