This is an automated email from the ASF dual-hosted git repository.
doebele pushed a commit to branch version3
in repository https://gitbox.apache.org/repos/asf/empire-db.git
The following commit(s) were added to refs/heads/version3 by this push:
new d57204e EMPIREDB-362 bugfix
d57204e is described below
commit d57204e15feeaff068c15fbcc7ed977f3b36e6ba
Author: Rainer Döbele <[email protected]>
AuthorDate: Fri Jan 21 14:01:23 2022 +0100
EMPIREDB-362
bugfix
---
empire-db/src/main/java/org/apache/empire/db/DBRowSet.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/empire-db/src/main/java/org/apache/empire/db/DBRowSet.java
b/empire-db/src/main/java/org/apache/empire/db/DBRowSet.java
index 0d415dc..889146c 100644
--- a/empire-db/src/main/java/org/apache/empire/db/DBRowSet.java
+++ b/empire-db/src/main/java/org/apache/empire/db/DBRowSet.java
@@ -764,9 +764,9 @@ public abstract class DBRowSet extends DBExpr
* @param conn a valid JDBC connection.
* @return true if the record exists or false otherwise
*/
- public final boolean recordExists(Object id, Connection conn)
+ public final boolean recordExists(Object id, DBContext context)
{
- return recordExists(new Object[] { id }, conn);
+ return recordExists(new Object[] { id }, context);
}
/**