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
I have implemented very rudimentary suport for multi range type in my app. Some example snippets below. I start to use these types of ranges more and more, as they proved very useful.
It would be great if torque-postgresql would have support for this. I can prepare a PR, but would need some guidance with how to implement this in the current gem's architecture.
# SQL
range_agg(tstzrange(starttime, endtime, '[]')) AS multi_period
# MultiPeriod.value(self[:multi_period]) => converts column to Array of Range objectsclassMultiPeriodextendDry::Initializerparam:multi_period,type: Types::Array.of(Types.Instance(Range)) | Types::Coercible::Stringdefself.value(...)new(...).valueenddefvaluereturnmulti_periodifmulti_period.is_a?(Array)json_value.mapdo |from,to|
(Time.zone.parse(from).to_datetime..Time.zone.parse(to).to_datetime)end.sort_by(&:first)endprivatedefjson_valueJSON.parse("[#{multi_period[1..-2]}]")endend
Hey @tomasc, sorry for taking so long to reply. I've been quite engaged in my current project!
I'll be checking this tomorrow. My first instinct is that AR already handles arrays of types as a modifier. That said, what might need to be provided is a way to alias or give the proper name for them (which I think it's possible with a few lines).
I have implemented very rudimentary suport for multi range type in my app. Some example snippets below. I start to use these types of ranges more and more, as they proved very useful.
It would be great if torque-postgresql would have support for this. I can prepare a PR, but would need some guidance with how to implement this in the current gem's architecture.
The text was updated successfully, but these errors were encountered: