changeset 197:db113f1dbcff embedded

Make addWarning method public, so it can compile
author Pedro Ferreira <pedro.ferreira@monetdbsolutions.com>
date Wed, 06 Dec 2017 14:37:05 +0100 (2017-12-06)
parents 89c285fc0a49
children c23218fbc2e9
files src/main/java/nl/cwi/monetdb/jdbc/MonetResultSet.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/main/java/nl/cwi/monetdb/jdbc/MonetResultSet.java
+++ b/src/main/java/nl/cwi/monetdb/jdbc/MonetResultSet.java
@@ -3669,7 +3669,7 @@ public class MonetResultSet extends Mone
 	 *
 	 * @param reason the warning message
 	 */
-	private void addWarning(String reason, String sqlstate) {
+	public void addWarning(String reason, String sqlstate) {
 		SQLWarning warng = new SQLWarning(reason, sqlstate);
 		if (warnings == null) {
 			warnings = warng;