IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 27893


Ignore:
Timestamp:
May 10, 2010, 10:45:29 AM (16 years ago)
Author:
eugene
Message:

make label, data_group, dist_group restrictions LIKE not ==

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/src/chiptool.c

    r27858 r27893  
    422422    PXOPT_COPY_S64(config->args,  where, "-chip_id", "chipRun.chip_id", "==");
    423423    // we only allow a single label to match (do not use pxAddLabelSearchArgs here)
    424     PXOPT_COPY_STR(config->args,  where, "-label",   "chipRun.label",   "==");
     424    PXOPT_COPY_STR(config->args,  where, "-label",   "chipRun.label",   "LIKE");
    425425    PXOPT_COPY_STR(config->args,  where, "-state",   "chipRun.state",   "==");
    426     PXOPT_COPY_STR(config->args,  where, "-data_group", "chipRun.data_group",   "==");
    427     PXOPT_COPY_STR(config->args,  where, "-dist_group", "chipRun.dist_group",   "==");
     426    PXOPT_COPY_STR(config->args,  where, "-data_group", "chipRun.data_group",   "LIKE");
     427    PXOPT_COPY_STR(config->args,  where, "-dist_group", "chipRun.dist_group",   "LIKE");
    428428
    429429    if (!psListLength(where->list)) {
Note: See TracChangeset for help on using the changeset viewer.