From 25037e7c4e12ca410d5343cd116141bec330495c Mon Sep 17 00:00:00 2001 From: ligc Date: Wed, 23 Sep 2009 09:43:36 +0000 Subject: [PATCH] bug 2864882:Replace getTable in DBobjUtils.pm git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@4206 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT/xCAT/DBobjUtils.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/perl-xCAT/xCAT/DBobjUtils.pm b/perl-xCAT/xCAT/DBobjUtils.pm index 6b594ce33..5363ec24b 100644 --- a/perl-xCAT/xCAT/DBobjUtils.pm +++ b/perl-xCAT/xCAT/DBobjUtils.pm @@ -611,7 +611,8 @@ sub getDBtable return undef; } - @rows = $thistable->getTable; + #@rows = $thistable->getTable; + @rows = @{$thistable->getAllEntries()}; # !!!! this routine returns rows even if the table is empty!!!!!!