Revision 2752
Added by Aaron Marcuse-Kubitza over 12 years ago
lib/sql_gen.py | ||
---|---|---|
174 | 174 |
|
175 | 175 |
if util.is_str(table): table = Table(table) |
176 | 176 |
assert table == None or isinstance(table, Table) |
177 |
if table != None: table = table.to_Table() |
|
177 | 178 |
|
178 | 179 |
self.name = name |
179 | 180 |
self.table = table |
Also available in: Unified diff
sql_gen.py: Col: Run `.to_Table()` on table to get just the reference to the table, not any SQL code that defines it