An Ecto SQLite3 adapter.
0

Configure Feed

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

Compare `include` to not use length guard

Matthew Johnston (Mar 27, 2026, 4:43 PM -0500) 159b2190 ddb5a28c

+1 -1
+1 -1
lib/ecto/adapters/sqlite3/connection.ex
··· 470 470 end 471 471 472 472 @impl true 473 - def execute_ddl({_, %Index{include: x}}) when length(x) != 0 do 473 + def execute_ddl({_, %Index{include: [_ | _]}}) do 474 474 raise ArgumentError, "`include` is not supported with SQLite3" 475 475 end 476 476