Sha256: 5c8e6a23935c1ebeb038ec609c35cc560333bc769e6b1bb50ac5386abb2df208
Contents?: true
Size: 513 Bytes
Versions: 1
Compression:
Stored size: 513 Bytes
Contents
module Fx # @api private class Function include Comparable attr_reader :name, :definition delegate :<=>, to: :name def initialize(row) @name = row.fetch("name") @definition = row.fetch("definition") end def ==(other) name == other.name && definition == other.definition end def to_schema <<~SCHEMA.indent(2) create_function :#{name}, sql_definition: <<-'SQL' #{definition.indent(4).rstrip} SQL SCHEMA end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fx-0.9.0 | lib/fx/function.rb |