Changes between Version 45 and Version 46 of DevWikiGardenTest
- Timestamp:
- 12/03/10 07:18:37 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DevWikiGardenTest
v45 v46 51 51 * It's easier to inspect 52 52 * 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 linestrings53 * 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 54 54 55 55 {{{ 56 56 SELECT logid, log_label, g1, g2, query_to_xml(log_sql, false,false,'') As result, log_sql 57 57 FROM postgis_garden_log 58 WHERE func = 'ST_3DDistance' AND 59 (g1 IN('POINTZ', 'MULTIPOINTZ', 'LINESTRINGZ') AND 60 g2 IN('POINTZ', 'MULTIPOINTZ') ) ; 58 WHERE func = 'ST_3DDistance' AND log_end IS NOT NULL ; 61 59 }}} 62 60