MCPcopy Create free account
hub / github.com/baidu/tera / ColumnName

Method ColumnName

src/sdk/python/TeraSdk.py:214–223  ·  view source on GitHub ↗

Returns: (string) 当前cell对应的 ColumnName(即 ColumnFamily:Qulifier)

(self)

Source from the content-addressed store, hash-verified

212 return copy_string_to_user(value, long(vallen.value))
213
214 def ColumnName(self):
215 """
216 Returns:
217 (string) 当前cell对应的 ColumnName(即 ColumnFamily:Qulifier)
218 """
219 value = POINTER(c_ubyte)()
220 vallen = c_uint64()
221 lib.tera_result_stream_column_name(self.stream,
222 byref(value), byref(vallen))
223 return copy_string_to_user(value, long(vallen.value))
224
225 def Value(self):
226 """

Callers 2

scan_with_filterFunction · 0.45
scanFunction · 0.45

Calls 1

copy_string_to_userFunction · 0.85

Tested by

no test coverage detected