MCPcopy Create free account
hub / github.com/apache/impala / Value

Class Value

tests/common/test_vector.py:136–145  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

134 # Each value in a test vector is wrapped in the Value object. This wrapping is
135 # done internally so this object should never need to be created by the user.
136 class Value(object):
137 def __init__(self, name, value):
138 self.name = name
139 self.value = value
140
141 def __str__(self):
142 return '"%s: %s"' % (self.name, self.value)
143
144 def __repr__(self):
145 return str(self)
146
147
148# Matrix -> Collection of vectors

Calls

no outgoing calls