CIDR data type support in map marker - Spatial view (Postgresql)
See original GitHub issueIs your feature request related to a problem? Please describe. Postgresql-native CIDR data type is not shown as a string when showing result row in the Spatial view
Describe the solution you’d like the native CIDR data type should be rendered as “192.168.1.0/24” and not has [object Object]
Describe alternatives you’ve considered None
Additional context
The subnet
column (Postgresl native cidr
type) is not shown here in human-readable form
Simple test case
CREATE EXTENSION IF NOT EXISTS postgis;
SELECT cidr('192.168.1.0/24') AS mycidr, 'Is this CIDR looking human readable?' AS mylabel, ST_SetSRID(ST_MakePoint(-71.1043443253471, 42.3150676015829),4326) AS myloc
Click on the blue dot in the Spatial
view of the results tab to see marker view showing [object Object]
Issue Analytics
- State:
- Created 2 years ago
- Comments:6 (2 by maintainers)
Top Results From Across the Web
Documentation: 15: 8.9. Network Address Types - PostgreSQL
PostgreSQL offers data types to store IPv4, IPv6, and MAC addresses, ... When sorting inet or cidr data types, IPv4 addresses will always...
Read more >PostgreSQL data types supported in ArcGIS—Help
Specific PostgreSQL data types can be accessed and edited from ArcGIS ... PostgreSQL data types (if any) map to the ArcGIS data type...
Read more >Mapping External DB Data Types to OutSystems Data Types
When connecting to external databases, OutSystems maps the external DB Data Types into OutSystems Data Types as follows: ...
Read more >The jOOQ Release Note History
The jooq-postgres-extensions module, which contained support for the HSTORE type, ... #13248, Amend manual sections about data types (XML, Spatial, JSON).
Read more >Using Oracle GoldenGate for Heterogeneous Databases
Non-Supported PostgreSQL Data Types. 15-3. 15.3. Supported Objects and Operations for ProtgreSQL. 15-4. 15.3.1. Tables and Views.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
How amazing are you folks! Thanks for the user love.
verified