From: Bborie Park Date: Fri, 14 Dec 2012 20:25:54 +0000 (+0000) Subject: Removed hardcoded flags for raster2pgsql from run_test X-Git-Tag: 2.1.0beta2~303 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e772b29f4a009651b6e0b1acc053b2fff8c3e2bc;p=postgis Removed hardcoded flags for raster2pgsql from run_test git-svn-id: http://svn.osgeo.org/postgis/trunk@10828 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/regress/run_test b/regress/run_test index ee69c22b3..50b629b56 100755 --- a/regress/run_test +++ b/regress/run_test @@ -480,7 +480,7 @@ run_raster_loader_and_check_output() show_progress # Produce the output SQL file. - ${RASTER2PGSQL} $_loader_options -C -f the_rast ${TEST}.tif $_tblname \ + ${RASTER2PGSQL} $_loader_options ${TEST}.tif $_tblname \ > ${PGIS_REG_TMPDIR}/loader.out \ 2> ${PGIS_REG_TMPDIR}/loader.err diff --git a/regress/run_test.pl b/regress/run_test.pl index 2cfb0cb33..30dc4f887 100755 --- a/regress/run_test.pl +++ b/regress/run_test.pl @@ -767,7 +767,7 @@ sub run_raster_loader_and_check_output show_progress(); # Produce the output SQL file. - $cmd = "$RASTER2PGSQL $loader_options -C -f the_rast ${TEST}.tif $tblname > $outfile 2> $errfile"; + $cmd = "$RASTER2PGSQL $loader_options ${TEST}.tif $tblname > $outfile 2> $errfile"; $rv = system($cmd); if ( $rv )