IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 6, 2012, 4:49:20 PM (14 years ago)
Author:
rhenders
Message:

Using the SkyTable.fits table rather than the Images.dat when checking if we have loaded a certain DVO db, as this table is regularly updated, unlike the larger Images table

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippToPsps/jython/scratchdb.py

    r33355 r33432  
    318318
    319319    '''
    320     Checks whether DVO files we have ingested are form the DVO path provided
     320    Checks whether DVO files we have ingested are from the DVO path provided
     321    Does this by checking the original path of the SkyTable.fits file
    321322    '''
    322323    def isCorrectDvo(self, path):
    323324
    324         sql = "SELECT path FROM " + self.dvoDoneTable + " where path LIKE '%Images.dat'"
     325        sql = "SELECT path FROM " + self.dvoDoneTable + " WHERE path LIKE '%SkyTable.fits'"
    325326        try:
    326327            rs = self.executeQuery(sql) 
Note: See TracChangeset for help on using the changeset viewer.