Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
s3cur3 authored May 8, 2024
1 parent 561fa42 commit d726040
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/geo_postgis.ex
Original file line number Diff line number Diff line change
Expand Up @@ -436,6 +436,7 @@ defmodule Geo.PostGIS do
defmacro st_make_envelope(xMin, yMin, xMax, yMax) do
quote do: fragment("ST_MakeEnvelope(?, ?, ?, ?)", unquote(xMin), unquote(yMin), unquote(xMax), unquote(yMax))
end

defmacro st_make_envelope(xMin, yMin, xMax, yMax, srid) do
quote do: fragment("ST_MakeEnvelope(?, ?, ?, ?, ?)", unquote(xMin), unquote(yMin), unquote(xMax), unquote(yMax), unquote(srid))
end
Expand Down

0 comments on commit d726040

Please sign in to comment.