class Impala::Protocol::TTypeQualifierValue
Constants
- FIELDS
- I32VALUE
- STRINGVALUE
Public Class Methods
i32Value(val)
click to toggle source
# File lib/impala/protocol/t_c_l_i_service_types.rb 153 def i32Value(val) 154 TTypeQualifierValue.new(:i32Value, val) 155 end
stringValue(val)
click to toggle source
# File lib/impala/protocol/t_c_l_i_service_types.rb 157 def stringValue(val) 158 TTypeQualifierValue.new(:stringValue, val) 159 end
Public Instance Methods
struct_fields()
click to toggle source
# File lib/impala/protocol/t_c_l_i_service_types.rb 170 def struct_fields; FIELDS; end
validate()
click to toggle source
# File lib/impala/protocol/t_c_l_i_service_types.rb 172 def validate 173 raise(StandardError, 'Union fields are not set.') if get_set_field.nil? || get_value.nil? 174 end