IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 27445 for trunk/ippTools


Ignore:
Timestamp:
Mar 24, 2010, 10:49:29 PM (16 years ago)
Author:
Paul Price
Message:

Only select warp runs that are 'full'. This is necessary following the removal of the '-available' flag.

Location:
trunk/ippTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/share/difftool_definewarpwarp_select.sql

    r24174 r27445  
    2323    ON templateRawExp.exp_id = templateChipRun.exp_id
    2424    AND templateRawExp.filter = inputRawExp.filter
     25WHERE inputWarpRun.state = 'full'
     26    AND templateWarpRun.state = 'full'
    2527-- WHERE hook %s
    2628GROUP BY input_warp_id
  • trunk/ippTools/src/difftool.c

    r27444 r27445  
    16561656    if (psListLength(selectWhere->list)) {
    16571657        psString new = psDBGenerateWhereConditionSQL(selectWhere, NULL);
    1658         psStringAppend(&whereClause, "\n%s %s", whereClause ? "AND" : "WHERE", new);
     1658        psStringAppend(&whereClause, "\nAND %s", new);
    16591659        psFree(new);
    16601660    }
     
    16621662
    16631663    if (!rerun) {
    1664         psStringAppend(&whereClause, "\n%s diffs.diff_id IS NULL", whereClause ? "AND" : "WHERE");
     1664        psStringAppend(&whereClause, "\nAND diffs.diff_id IS NULL");
    16651665    }
    16661666
Note: See TracChangeset for help on using the changeset viewer.