You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How to reproduce:
Create any migration for the new DB, call mix ecto.migrate
Expected result: migration successfully executed.
Actual result:
warning: :pool_timeout option no longer has an effect and has been replaced with an improved queuing system.
See "Queue config" in DBConnection.start_link/2 documentation for more information.
(ecto_sql) lib/ecto/adapters/sql.ex:469: Ecto.Adapters.SQL.adapter_config/1
(ecto_sql) lib/ecto/adapters/sql.ex:456: Ecto.Adapters.SQL.init/3
(ecto) lib/ecto/repo/supervisor.ex:172: Ecto.Repo.Supervisor.init/1
(stdlib) supervisor.erl:295: :supervisor.init/1
(stdlib) gen_server.erl:374: :gen_server.init_it/2
** (FunctionClauseError) no function clause matching in String.Unicode.codepoints/1
The following arguments were given to String.Unicode.codepoints/1:
# 1
["CREATE TABLE IF NOT EXISTS ", [34, "schema_migrations", 34], 32, 40, [[[], [[34, "version", 34], 32, "Int64", [[], []]], ", "], [34, "inserted_at", 34], 32, "DateTime", [[], []]], 41, [], " ENGINE = TinyLog "]
Attempted function clauses (showing 1 out of 1):
def codepoints(binary) when is_binary(binary)
(elixir) lib/elixir/unicode/unicode.ex:300: String.Unicode.codepoints/1
(clickhousex) lib/clickhousex/query.ex:39: DBConnection.Query.Clickhousex.Query.parse/2
(db_connection) lib/db_connection.ex:1122: DBConnection.parse/3
(db_connection) lib/db_connection.ex:531: DBConnection.prepare_execute/4
(clickhousex) lib/clickhousex.ex:59: Clickhousex.query/4
(ecto_sql) lib/ecto/adapters/sql.ex:291: Ecto.Adapters.SQL.query!/4
(elixir) lib/enum.ex:1336: Enum."-map/2-lists^map/1-0-"/2
(ecto_sql) lib/ecto/adapters/sql.ex:699: Ecto.Adapters.SQL.execute_ddl/4
The text was updated successfully, but these errors were encountered:
How to reproduce:
Create any migration for the new DB, call
mix ecto.migrate
Expected result: migration successfully executed.
Actual result:
The text was updated successfully, but these errors were encountered: