[Jifty-commit] r7055 - Jifty-DBI/trunk/t

Jifty commits jifty-commit at lists.jifty.org
Tue May 19 08:22:11 EDT 2009


Author: sartak
Date: Tue May 19 08:22:11 2009
New Revision: 7055

Modified:
   Jifty-DBI/trunk/t/03rename_column.t

Log:
Destroy the handle explicitly to avoid more warnings

Modified: Jifty-DBI/trunk/t/03rename_column.t
==============================================================================
--- Jifty-DBI/trunk/t/03rename_column.t	(original)
+++ Jifty-DBI/trunk/t/03rename_column.t	Tue May 19 08:22:11 2009
@@ -59,6 +59,7 @@
     ok $handle->simple_query("insert into test(a) values(1)"), "DEFAULT is still there";
     is $handle->simple_query("select * from test")->fetchrow_hashref->{'y'},
         1, 'correct value';
+    undef $handle;
 }} # SKIP, foreach blocks
 
 1;


More information about the Jifty-commit mailing list