Class: ActiveRecord::ConnectionAdapters::RedshiftAdapter::StatementPool

Inherits:
ConnectionAdapters::StatementPool
  • Object
show all
Defined in:
lib/active_record/connection_adapters/redshift_adapter.rb

Overview

:nodoc:

Instance Method Summary collapse

Constructor Details

#initialize(connection, max) ⇒ StatementPool

Returns a new instance of StatementPool.



130
131
132
133
134
# File 'lib/active_record/connection_adapters/redshift_adapter.rb', line 130

def initialize(connection, max)
  super(max)
  @connection = connection
  @counter = 0
end

Instance Method Details

#[]=(sql, key) ⇒ Object



140
141
142
# File 'lib/active_record/connection_adapters/redshift_adapter.rb', line 140

def []=(sql, key)
  super.tap { @counter += 1 }
end

#next_keyObject



136
137
138
# File 'lib/active_record/connection_adapters/redshift_adapter.rb', line 136

def next_key
  "a#{@counter + 1}"
end