413 |
if self.t_table is None: |
if self.t_table is None: |
414 |
self.copy_to_transient() |
self.copy_to_transient() |
415 |
return self.t_table.UniqueValues(col) |
return self.t_table.UniqueValues(col) |
416 |
|
|
417 |
|
def SimpleQuery(self, left, comparison, right): |
418 |
|
if self.t_table is None: |
419 |
|
self.copy_to_transient() |
420 |
|
# Make sure to use the column object of the transient table. The |
421 |
|
# left argument is always a column object so we can just ask the |
422 |
|
# t_table for the right object. |
423 |
|
return self.t_table.SimpleQuery(self.t_table.Column(left.name), |
424 |
|
comparison, right) |