Project

General

Profile

« Previous | Next » 

Revision 2485

sql.py: put_table(): Changed "Setting missing rows' pkeys to NULL" to "Setting pkeys of missing rows to NULL" to avoid having single quote in debug output, which messes up text editor SQL syntax highlighting

View differences:

sql.py
1019 1019
    log_debug('Adding pkey on returned pkeys table to enable fast joins')
1020 1020
    index_pkey(db, pkeys)
1021 1021
    
1022
    log_debug("Setting missing rows' pkeys to NULL")
1022
    log_debug("Setting pkeys of missing rows to NULL")
1023 1023
    missing_rows_joins = input_joins+[sql_gen.Join(pkeys,
1024 1024
        {in_pkey: sql_gen.join_same_not_null}, sql_gen.filter_out)]
1025 1025
        # must use join_same_not_null or query will take forever

Also available in: Unified diff