Class: ClickHouse::Type::BaseType

Inherits:
Object
  • Object
show all
Defined in:
lib/click_house/type/base_type.rb

Instance Method Summary collapse

Instance Method Details

#cast(_value) ⇒ Object

Raises:

  • (NotImplementedError)


6
7
8
# File 'lib/click_house/type/base_type.rb', line 6

def cast(_value, *)
  raise NotImplementedError, __method__
end

#serialize(_value) ⇒ Object

Raises:

  • (NotImplementedError)


10
11
12
# File 'lib/click_house/type/base_type.rb', line 10

def serialize(_value, *)
  raise NotImplementedError, __method__
end