(self, val)
| 1002 | """ |
| 1003 | |
| 1004 | def __init__(self, val): |
| 1005 | # XXX this relies on Table always being a SimpleTable under the hood. |
| 1006 | # What if users create their own Table implementation? |
| 1007 | self.val = cast_to_concrete(val, |
| 1008 | gdb.lookup_type("arrow::SimpleTable")) |
| 1009 | self.schema = Schema(deref(self.val['schema_'])) |
| 1010 | self.columns = StdPtrVector(self.val['columns_']) |
| 1011 | |
| 1012 | @property |
| 1013 | def num_rows(self): |
nothing calls this directly
no test coverage detected