Skip to content

Commit d089320

Browse files
authored
Add missing space (#78)
1 parent ec5406d commit d089320

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/ecto/adapters/sqlite3/connection.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ defmodule Ecto.Adapters.SQLite3.Connection do
334334
end
335335

336336
defp build_explain_query(query, :query_plan) do
337-
IO.iodata_to_binary(["EXPLAIN QUERY PLAN", query])
337+
IO.iodata_to_binary(["EXPLAIN QUERY PLAN ", query])
338338
end
339339

340340
defp build_explain_query(query, :instructions) do

0 commit comments

Comments
 (0)