PostgreSQL tsrange——重叠忽略等效范围?

PostgreSQL tsrange -- overlap ignores equivalent ranges?

我的 Rails 应用程序中有一个查询,如下所示:

# Returns any records whose period intersect the specified time
# @see https://www.postgresql.org/docs/9.3/static/rangetypes.html
# @see https://www.postgresql.org/docs/9.3/static/functions-range.html
# @note The '()' means exclude both sides of the range
#
# @param period_start [DateTime,Time] Start of the range
# @param period_end [DateTime,Time] End of the range
scope :overlapping, ->(period_start, period_end) {
  where(
    "#{table_name}.period && tsrange(:period_start, :period_end, '()')",
    period_start: Time.at(period_start.to_i), # Caps precision to the second
    period_end: Time.at(period_end.to_i) # Caps precision to the second
  ).distinct
}

但是,这里的问题是任何与 period_startperiod_end 创建的范围具有相同周期的记录都不会被返回。这是为什么?我以为重叠检查是否有任何交集?

However, the problem here is that any records who have the SAME period as the range created by period_start and period_end are not returned.

事实并非如此。不确定你的问题是什么,但不是这样。

SELECT
  tsrange(x,y),
  tsrange(x,y) && tsrange(x,y) AS overlaps
FROM ( VALUES
  ('yesterday'::timestamp, 'today'::timestamp)
) AS t(x,y);
                    tsrange                    | overlaps 
-----------------------------------------------+----------
 ["2017-04-24 00:00:00","2017-04-25 00:00:00") | t
(1 row)