PrimaryKeySet -> KeySet.

This commit is contained in:
Michael Bayne
2008-09-05 22:16:55 +00:00
parent 249f4a5106
commit 4c41561f0f
4 changed files with 9 additions and 9 deletions
@@ -147,7 +147,7 @@ public abstract class FindAllQuery<T extends PersistentRecord>
throws SQLException
{
_builder.newQuery(new SelectClause<T>(_type, _marsh.getFieldNames(),
new PrimaryKeySet<T>(_type, keys)));
new KeySet<T>(_type, keys)));
PreparedStatement stmt = _builder.prepare(conn);
try {
ResultSet rs = stmt.executeQuery();