Sha256: 1dde0782779246054d6753aa9a0357ed19dcc2439711573b359d0312929cf5e9
Contents?: true
Size: 379 Bytes
Versions: 6
Compression:
Stored size: 379 Bytes
Contents
module Groonga module ExpressionTree class Variable attr_reader :column def initialize(column) @column = column end def build(expression) expression.append_object(@column, Operator::GET_VALUE, 1) end def estimatable? true end def estimate_size(table) table.size end end end end
Version data entries
6 entries across 6 versions & 1 rubygems