Revision 2469
Added by Aaron Marcuse-Kubitza almost 13 years ago
lib/db_xml.py | ||
---|---|---|
147 | 147 |
in_table = copy.copy(in_table) # don't modify input! |
148 | 148 |
sql.run_query_into(db, *sql.mk_select(db, in_table, limit=limit, |
149 | 149 |
start=start, order_by=None), into=in_table) |
150 |
# in_table won't be overwritten because of automatic versioning
|
|
150 |
# in_table will be shadowed (hidden) by the created temp table
|
|
151 | 151 |
|
152 | 152 |
def pkey(table): return sql.pkey(db, table, True) |
153 | 153 |
|
Also available in: Unified diff
db_xml.py: put_table(): Subset in_table: Document that in_table will be shadowed (hidden) by the created temp table, rather than versioned, now that the table is (almost) always created as a temp table