Skip to content

Commit c4c3000

Browse files
test postgres
1 parent 658e512 commit c4c3000

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
fail-fast: false
5353
matrix:
5454
elixirbase:
55-
- "1.11.4-erlang-23.3.4.9-alpine-3.16.9"
55+
- "1.17.2-erlang-25.0.4-alpine-3.19.3"
5656
postgres:
5757
- "16.2-alpine"
5858
- "11.11-alpine"

lib/ecto/adapters/postgres/connection.ex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1770,8 +1770,8 @@ if Code.ensure_loaded?(Postgrex) do
17701770

17711771
type =
17721772
cond do
1773-
fields && precision -> [type_name, " ", fields, ?(, to_string(precision), ?) ]
1774-
precision -> [type_name, ?(, to_string(precision), ?) ]
1773+
fields && precision -> [type_name, " ", fields, ?(, to_string(precision), ?)]
1774+
precision -> [type_name, ?(, to_string(precision), ?)]
17751775
fields -> [type_name, " ", fields]
17761776
true -> [type_name]
17771777
end

0 commit comments

Comments
 (0)