don't die on unexistant table drop
authorDobrica Pavlinusic <dpavlin@rot13.org>
Sat, 2 Apr 2011 16:36:12 +0000 (18:36 +0200)
committerDobrica Pavlinusic <dpavlin@rot13.org>
Sat, 2 Apr 2011 16:36:12 +0000 (18:36 +0200)
tiles.pl

index a8d6998..036780a 100755 (executable)
--- a/tiles.pl
+++ b/tiles.pl
@@ -69,7 +69,7 @@ if ( !(-e $icon1) or !(-e $icon2))                                    # Icon file missing - bad thing
 
 # (35,-89),(34,-90)
 
-$dbh->do("drop table gvp_world_tiles") ;
+eval { $dbh->do("drop table gvp_world_tiles") };
 $dbh->do("create table gvp_world_tiles (zoom int2,tilex int4,tiley int4,latpix int4,lngpix int4)") ;
 
 $sth = $dbh->prepare("select (volpnt)[0] as lat, (volpnt)[1] as lng from gvp_world") ;