class Clickhouse::Schema::Create

Defined in:

clickhouse/schema/create.cr:1
clickhouse/schema/create.cr:47

Constructors

Class Method Summary

Instance Method Summary

Constructor Detail

def self.parse(buf : String) : Create #

[View source]

Class Method Detail

def self.parse_columns(buf : String) : Array(Column) #

[View source]

Instance Method Detail

def backquoted : Bool #

def backquoted=(v : Bool) : Bool #

def backquoted=(v : Nil) #

nil assignments are always ignored


def backquoted? : Bool #

def column(name : String) : Column #

[View source]
def column : String #

def column=(v : String) : String #

def column=(v : Nil) #

nil assignments are always ignored


def column? : String | Nil #

def columns : Array(Column) #

def columns=(v : Array(Column)) : Array(Column) #

def columns=(v : Nil) #

nil assignments are always ignored


def columns? : Array(Column) | Nil #

def create : String #

def create=(v : String) : String #

def create=(v : Nil) #

nil assignments are always ignored


def create? : String | Nil #

def db : String #

def db=(v : String) : String #

def db=(v : Nil) #

nil assignments are always ignored


def db? : String | Nil #

def engine : String #

def engine=(v : String) : String #

def engine=(v : Nil) #

nil assignments are always ignored


def engine? : String | Nil #

def table : String #

def table=(v : String) : String #

def table=(v : Nil) #

nil assignments are always ignored


def table? : String | Nil #

def to_s(io : IO) #
Description copied from class Reference

Appends a short String representation of this object which includes its class name and its object address.

class Person
  def initialize(@name : String, @age : Int32)
  end
end

Person.new("John", 32).to_s # => #<Person:0x10a199f20>

[View source]
def to_sql #

[View source]