[Lxr-commits] CVS: lxr/lib/LXR/Index Postgres.pm,1.9,1.10
Brought to you by:
ajlittoz
|
From: Malcolm B. <mb...@us...> - 2002-01-23 15:48:55
|
Update of /cvsroot/lxr/lxr/lib/LXR/Index
In directory usw-pr-cvs1:/tmp/cvs-serv29755
Modified Files:
Postgres.pm
Log Message:
Make sure all sql statements are undef'ed to prevent warnings from Pg.pm
Index: Postgres.pm
===================================================================
RCS file: /cvsroot/lxr/lxr/lib/LXR/Index/Postgres.pm,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- Postgres.pm 2001/11/28 12:59:02 1.9
+++ Postgres.pm 2002/01/23 15:48:52 1.10
@@ -300,23 +300,27 @@
sub END {
- $files_select = undef;
- $filenum_nextval = undef;
+
+ $files_select= undef;
+ $filenum_nextval= undef;
$files_insert = undef;
- $symbols_byname = undef;
- $symbols_byid = undef;
+ $symbols_byname= undef;
+ $symbols_byid= undef;
$symnum_nextval = undef;
- $symbols_insert = undef;
+ $symbols_remove= undef;
+ $symbols_insert= undef;
+ $indexes_select= undef;
$indexes_insert = undef;
- $releases_insert = undef;
+ $releases_select= undef;
+ $releases_insert= undef;
$status_insert = undef;
- $status_update = undef;
- $usage_insert = undef;
- $usage_select = undef;
- $declid_nextnum = undef;
+ $status_update= undef;
+ $usage_insert= undef;
+ $usage_select= undef;
$decl_select = undef;
+ $declid_nextnum= undef;
$decl_insert = undef;
-
+
$dbh->commit();
$dbh->disconnect();
$dbh = undef;
|