Revision 3619
Added by Aaron Marcuse-Kubitza over 12 years ago
db_xml.py | ||
---|---|---|
258 | 258 |
|
259 | 259 |
# Insert node |
260 | 260 |
pkeys_loc = sql_io.put_table(db, out_table, in_tables, row, row_ins_ct_ref, |
261 |
None, next, col_defaults, is_func, on_error)
|
|
261 |
None, next, col_defaults, on_error) |
|
262 | 262 |
|
263 | 263 |
sql.empty_temp(db, set(in_tables) - no_empty) |
264 | 264 |
|
Also available in: Unified diff
sql_io.py: put_table(): Use is_function where caller-provided is_func was used, since is_function determines whether something is a function based on whether it actually exists as a SQL function instead of just whether its name starts with "_". Removed now-unneeded is_func param.