Get the Query from a cached example. See notes on get().
(self, row_id)
| 238 | return cursor.fetchone()[0] |
| 239 | |
| 240 | def get_query(self, row_id): |
| 241 | """ |
| 242 | Get the Query from a cached example. See notes on get(). |
| 243 | """ |
| 244 | return self.get(row_id).query |
| 245 | |
| 246 | def get_entities(self, row_id): |
| 247 | """ |