This is an automated email from the ASF dual-hosted git repository.

doebele pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/empire-db.git


The following commit(s) were added to refs/heads/master by this push:
     new 50d4b91  EMPIREDB-362 small fix
50d4b91 is described below

commit 50d4b914983178bc2097c051cd9ef58d517d101f
Author: Rainer Döbele <[email protected]>
AuthorDate: Tue Feb 22 10:47:10 2022 +0100

    EMPIREDB-362 small fix
---
 empire-db/src/main/java/org/apache/empire/db/DBUtils.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/empire-db/src/main/java/org/apache/empire/db/DBUtils.java 
b/empire-db/src/main/java/org/apache/empire/db/DBUtils.java
index fa89877..92b1890 100644
--- a/empire-db/src/main/java/org/apache/empire/db/DBUtils.java
+++ b/empire-db/src/main/java/org/apache/empire/db/DBUtils.java
@@ -44,11 +44,11 @@ public class DBUtils implements DBContextAware
     protected static final Logger log = 
LoggerFactory.getLogger(DBDatabase.class);
     
     // Threshold for long running queries in milliseconds
-    protected static long longRunndingStmtThreshold = 30000;
+    protected long longRunndingStmtThreshold = 30000;
     // Default list capacity
-    protected static int  DEFAULT_LIST_CAPACITY  = 10;
+    protected int  DEFAULT_LIST_CAPACITY  = 10;
     // Max-Rows for list queries
-    protected static int  MAX_QUERY_ROWS  = 999;
+    protected int  MAX_QUERY_ROWS  = 999;
     
     // the context
     protected final DBContext context;

Reply via email to