Skip to content

Commit 148f79c

Browse files
committed
Report all exceptions seen in RowStreamWrapper handler
1 parent 08abbb9 commit 148f79c

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

query-engine/docs/query-engine-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ services:
5050
- 16686:16686
5151

5252
query-engine:
53-
image: ghcr.io/yaytay/query-engine-design-mode:0.0.77-main
53+
image: ghcr.io/yaytay/query-engine-design-mode:0.0.78-main
5454
ports:
5555
- 2000:8080
5656
volumes:

query-engine/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@
371371
<dependency>
372372
<groupId>org.liquibase</groupId>
373373
<artifactId>liquibase-core</artifactId>
374-
<version>4.31.1</version>
374+
<version>4.32.0</version>
375375
<exclusions>
376376
<exclusion>
377377
<groupId>javax.activation</groupId>

query-engine/src/main/java/uk/co/spudsoft/query/exec/sources/sql/RowStreamWrapper.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ public RowStreamWrapper(SourceNameTracker sourceNameTracker, SqlConnection conne
108108
logger.trace("{} Received row: {}", this, dataRow);
109109
handler.handle(dataRow);
110110
} catch (Throwable ex) {
111+
logger.warn("Exception processing row (with types {}): ", types, ex);
111112
if (exceptionHandler != null) {
112113
exceptionHandler.handle(ex);
113114
}

query-engine/src/main/java/uk/co/spudsoft/query/main/Version.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public final class Version {
3434
/**
3535
* The project version, as set in the Maven pom.xml.
3636
*/
37-
public static final String MAVEN_PROJECT_VERSION = "0.0.77-main";
37+
public static final String MAVEN_PROJECT_VERSION = "0.0.78-main";
3838

3939
private Version() {
4040
}

0 commit comments

Comments
 (0)