Project

General

Profile

« Previous | Next » 

Revision 3308

sql_io.py: put_table(): ignore(): Merged filter_ var into sql.delete() call because that's the only place it's used

View differences:

lib/sql_io.py
348 348
        else:
349 349
            for table in insert_in_tables: # must delete from all copies
350 350
                sql.add_index(db, in_col, table) # enable fast filtering
351
                filter_ = sql_gen.ColValueCond(in_col, value)
352
                sql.delete(db, table, filter_)
351
                sql.delete(db, table, sql_gen.ColValueCond(in_col, value))
353 352
            if value == None: not_null_cols.add(in_col)
354 353
    
355 354
    def insert_pkeys_table(which):

Also available in: Unified diff