module Trino::Client::ModelVersions::V351::AggregationNode

Public Class Methods

decode(hash) click to toggle source
# File lib/trino/client/model_versions/351.rb, line 299
def decode(hash)
  unless hash.is_a?(Hash)
    raise TypeError, "Can't convert #{hash.class} to Hash"
  end
  obj = allocate
  obj.send(:initialize_struct,
    hash["id"],
    hash["source"] && PlanNode.decode(hash["source"]),
    hash["aggregations"] && Hash[hash["aggregations"].to_a.map! {|k,v| [k, Aggregation.decode(v)] }],
    hash["groupingSets"] && GroupingSetDescriptor.decode(hash["groupingSets"]),
    hash["preGroupedSymbols"],
    hash["step"] && hash["step"].downcase.to_sym,
    hash["hashSymbol"],
    hash["groupIdSymbol"],
  )
  obj
end