我正在使用以下带有 PG gem 的 ruby 代码来返回 Postgres“没有时区的时间戳”格式的时间戳。我希望它返回值(-1 小时),而不是返回当前值。
def get_latest_timestamp(id)
conn1 = PGconn.open(:dbname => 'testdb')
res = conn1.exec("SELECT MAX(time_of_search) FROM listings WHERE id=#{id}")
res.values[0][0]
end