r9093: changes for postgresql
[umlisp.git] / sql-classes.lisp
index 6b606dbfd058d8f1fb35e9804551e70fe8dd7fa0..48e7d54a538e66bea2290c61e8d4ae76037bbd92 100644 (file)
@@ -790,7 +790,7 @@ is OBJNAME from TABLE where WHERE-NAME field = WHERE-VALUE with FIELDS"
 
 (defun make-ustats ()
   (with-sql-connection (conn)
-    (sql-execute "drop table if exists USTATS" conn)
+    (ignore-errors (sql-execute "drop table USTATS" conn))
     (sql-execute "create table USTATS (NAME varchar(160), COUNT bigint, SRL integer)" conn)
     
     (dotimes (srl 4)