Method: Cequel::Metal::CqlRowSpecification#initialize

Defined in:
lib/cequel/metal/cql_row_specification.rb

#initialize(condition, bind_vars) ⇒ CqlRowSpecification

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Create a new row specification

Parameters:

  • condition (String)

    CQL string representing condition

  • bind_vars (Array)

    Bind variables

Since:

  • 1.0.0



27
28
29
# File 'lib/cequel/metal/cql_row_specification.rb', line 27

def initialize(condition, bind_vars)
  @condition, @bind_vars = condition, bind_vars
end