Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
test
  • Loading branch information
greg-rychlewski committed Mar 29, 2026
commit b541c12a85859fa500004694211b999028e41636
3 changes: 1 addition & 2 deletions lib/ecto/adapters/myxql.ex
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,6 @@ defmodule Ecto.Adapters.MyXQL do
Port.command(port, contents)
# Use this as a signal to close the port since we cannot
# send an exit command to mysql in batch mode
Process.sleep(10000)
Port.command(port, ";SELECT '__ECTO_EOF__';\n")
collect_output(port, "")
end
Expand Down Expand Up @@ -660,7 +659,7 @@ defmodule Ecto.Adapters.MyXQL do
{acc, 1}

{^port, {:exit_status, status}} ->
{acc, status}
collect_output(port, acc)
end
end
end
Loading