Is there a proper way to get range types?
Or parse as a String and wait for native support ...
For example tsrange :
["2010-01-01 14:00:00","2010-01-01 15:00:00"]
PG Range tupes - http://www.postgresql.org/docs/devel/static/rangetypes.html
You can use range functions in your query to create separate date columns.
select lower(some_range) as start, upper(some_range) as end ...
Then you can use the ResultSet getDate () method in the resulting columns.
Source: https://habr.com/ru/post/1209331/More articles:How to extract match string from large text? - c #List of JSON files on Google Drive - jsonHow to upload multiple images using the FaceBook Python SDK? - pythonappendTo does not put my element where I want - javascriptPerforming an activity stop that does not resume - Android - androidCTE with HierarchyID unexpectedly causes parsing error - common-table-expressionI can set the default elasticsearch logarithmic search through elasticsearch-template.json - elasticsearchNameError: uninitialized constant Rpush :: Gcm I'm trying to use rpush for my mobile application. But I keep getting this error - androidVisual Studio 2015 preview breaks SQL Server hierarchy - sql-serverLifting possibilities n stairs with restrictions on the 20th floor - cAll Articles