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
This commit is contained in:
ligc 2009-09-23 09:43:36 +00:00
parent 9c556ff8ad
commit 25037e7c4e

View File

@ -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!!!!!!