Changes between Version 45 and Version 46 of DevWikiGardenTest


Ignore:
Timestamp:
Dec 3, 2010, 7:18:37 AM (13 years ago)
Author:
robe
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • DevWikiGardenTest

    v45 v46  
    5151  * It's easier to inspect
    5252  * You can conceivably (though haven't tried yet) do a join between two log output tables by logid (as long as the logs were generated from the same test script) to compare results from different versions of postgis)
    53   * You can also rerun a subset of the queries for closer inspection by just writing an sql statement something like below -- which will test all tests for the ST_3DDistance function that involve points and linestrings
     53  * You can also rerun a subset of the queries for closer inspection by just writing an sql statement something like below -- which will retest all tests for the ST_3DDistance function that completed successfully
    5454
    5555{{{
    5656SELECT logid, log_label, g1, g2, query_to_xml(log_sql, false,false,'') As result, log_sql
    5757 FROM postgis_garden_log
    58 WHERE func = 'ST_3DDistance' AND
    59   (g1 IN('POINTZ', 'MULTIPOINTZ', 'LINESTRINGZ') AND
    60      g2 IN('POINTZ', 'MULTIPOINTZ') ) ;
     58WHERE func = 'ST_3DDistance' AND log_end IS NOT NULL ;
    6159}}}
    6260