1 parent 004b33e commit c0b8704Copy full SHA for c0b8704
1 file changed
java-bigquery-jdbc/src/main/java/com/google/cloud/bigquery/jdbc/BigQueryConnection.java
@@ -700,6 +700,7 @@ private void beginTransaction() {
700
}
701
702
synchronized void updateSessionInfo(String sessionId) {
703
+ LOG.fine("++enter++ ");
704
if (sessionId != null && !sessionId.isEmpty()) {
705
if (this.sessionInfoConnectionProperty == null
706
|| !sessionId.equals(this.sessionInfoConnectionProperty.getValue())) {
@@ -721,6 +722,7 @@ synchronized void updateSessionInfo(String sessionId) {
721
722
if (!found) {
723
updated.add(sessionProperty);
724
725
+ LOG.info("Updated session info: " + sessionId);
726
this.queryProperties = Collections.unmodifiableList(updated);
727
728
0 commit comments