Changes between Version 50 and Version 51 of DevWikiGardenTest


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

Legend:

Unmodified
Added
Removed
Modified
  • DevWikiGardenTest

    v50 v51  
    3030   * ''log_output'' - an xml field that contains the query_to_xml output of the query.
    3131
    32 There is also a companion for raster testing: raster_gardentest.sql.xsl. The raster one doesn't
    33 currently create logging tables but will soon.
     32There is also a companion for raster testing: raster_gardentest.sql.xsl. The raster one currently only has a '''raster_garden_log''' table
     33which is lacking a log_sql field.  This will be added soon.  The structure follows the same pattern as postgis_garden_log
     34except that g1/g2 fields may refer to a pixeltype or geometry type.
    3435
    3536-- to run:
     
    6566 FROM postgis_garden_log
    6667WHERE func = 'ST_3DDistance' AND log_end IS NOT NULL ;
     68}}}
     69
     70-- basic stats getting timings in milliseconds of garden test just for ST_Intersects function --
     71{{{
     72SELECT logid, log_label, g1, g2, date_part('epoch',age(log_end,log_start))*1000 As dur_millisec
     73 FROM raster_garden_log
     74WHERE func = 'ST_Intersects'  ;
    6775}}}
    6876