Get information about a table. Args: table: Table name Returns: Dict with table info (size, etc.)
(self, table)
| 254 | self._execute(STASH_OP_CLEAR, table) |
| 255 | |
| 256 | def info(self, table): |
| 257 | """ |
| 258 | Get information about a table. |
| 259 | |
| 260 | Args: |
| 261 | table: Table name |
| 262 | |
| 263 | Returns: |
| 264 | Dict with table info (size, etc.) |
| 265 | """ |
| 266 | return self._execute(STASH_OP_INFO, table) |
| 267 | |
| 268 | def ensure(self, table): |
| 269 | """ |
no test coverage detected