Revision 5019
Added by Aaron Marcuse-Kubitza over 12 years ago
lib/db_xml.py | ||
---|---|---|
217 | 217 |
in_table.name = strings.ustr(in_table) # prepend schema |
218 | 218 |
cur = sql.run_query_into(db, sql.mk_select(db, full_in_table, |
219 | 219 |
limit=this_limit, start=start), into=in_table, add_pkey_=True) |
220 |
# full_in_table will be shadowed (hidden) by created temp table |
|
221 | 220 |
|
222 | 221 |
this_ct = cur.rowcount |
223 | 222 |
total += this_ct |
Also available in: Unified diff
db_xml.py: put_table(): Removed no longer accurate comment that full_in_table will be shadowed (hidden) by the created temp table. (The temp table is now named differently, so the shadowing does not occur.)