(self)
| 6771 | v2 = tb.StringCol(itemsize=8) |
| 6772 | |
| 6773 | def setUp(self): |
| 6774 | super().setUp() |
| 6775 | |
| 6776 | tbl = self.h5file.create_table("/", "test", self.SrcTblDesc) |
| 6777 | row = tbl.row |
| 6778 | |
| 6779 | row["id"] = 1 |
| 6780 | row["v1"] = 1.5 |
| 6781 | row["v2"] = "a" * 8 |
| 6782 | row.append() |
| 6783 | |
| 6784 | row["id"] = 2 |
| 6785 | row["v1"] = 2.5 |
| 6786 | row["v2"] = "b" * 6 |
| 6787 | row.append() |
| 6788 | |
| 6789 | tbl.flush() |
| 6790 | |
| 6791 | def test00_same(self): |
| 6792 | """Query with same storage.""" |
nothing calls this directly
no test coverage detected