Changeset 963


Ignore:
Timestamp:
03/31/06 17:16:02 (18 years ago)
Author:
mar637
Message:

set_tsys needs to use vector notation of TSYS

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/python/selector.py

    r954 r963  
    120120
    121121        """
    122         taql =  "SELECT FROM $1 WHERE TSYS >= %f" % (tsysmin)
     122        taql =  "SELECT FROM $1 WHERE TSYS[0] >= %f" % (tsysmin)
    123123        if isinstance(tsysmax, float):
    124             taql = taql + " AND TSYS <= %f" % ( tsysmax)
     124            taql = taql + " AND TSYS[0] <= %f" % ( tsysmax)
    125125        self._settaql(taql)
    126126
Note: See TracChangeset for help on using the changeset viewer.