class BSON::Decimal128

def <=>(other)

def <=>(other)
  to_d <=> case other
    when Decimal128
      other.to_d
    else
      other
    end
end