An Ecto SQLite3 adapter.
0

Configure Feed

Select the types of activity you want to include in your feed.

Fix compile "typing" warning

We will check the config at runtime now instead of relying on it being
compiled as having the type set.

Fixes #157

Matthew Johnston (Dec 19, 2024, 8:21 PM -0600) 70f4edd3 5677ff0a

+1 -3
+1 -3
lib/ecto/adapters/sqlite3/connection.ex
··· 1384 1384 [quote_name(name)] 1385 1385 end 1386 1386 1387 - @datetime_type Application.compile_env(:ecto_sqlite3, :datetime_type, :iso8601) 1388 - 1389 1387 defp expr({:datetime_add, _, [datetime, count, interval]}, sources, query) do 1390 1388 format = 1391 - case @datetime_type do 1389 + case Application.get_env(:ecto_sqlite3, :datetime_type) do 1392 1390 :text_datetime -> 1393 1391 "%Y-%m-%d %H:%M:%f000Z" 1394 1392