This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BEGIN; | |
SET statement_timeout = 50; | |
LOCK TABLE ONLY test IN ACCESS EXCLUSIVE MODE; | |
SET statement_timeout = 0; | |
ALTER TABLE test ....; | |
-- do whatever you want, timeout is removed. | |
commit; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class PropertiesController < ApplicationController | |
include ActionController::Live | |
before_action :find_county | |
def index | |
response.headers["Content-Type"] ||= 'text/csv' | |
response.headers["Content-Disposition"] = "attachment; filename=#{@county.csv_file_name}" | |
response.stream.write Property::CSV_HEADERS.to_csv |