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
This bug essentially makes the geometry type unusable. To work around this I need to use the raw sql insertion from the docs: 'sqlST_SetSRID(ST_MakePoint(-90.9, 18.7), 4326),'
IMO this workaround kinda defeats the purpose of using an ORM. I see that there is a PR open to fix this. Can this be prioritized for the next release?
What version of
drizzle-orm
are you using?0.32.0
What version of
drizzle-kit
are you using?0.23.0
Describe the Bug
The new Postgis geometry type has an option for the SRID but never passes it into the field definition SQL here and here.
This is similar to issue #2454 where the geometry type also never passes the "type" to the SQL field definition.
Expected behavior
For a schema entry like this
I would expect a SQL field definition like this:
geometry(point, 4326)
Environment & setup
No response
The text was updated successfully, but these errors were encountered: