Skip to content

Commit 7c130da

Browse files
committed
Fix compile error and update changelog.
1 parent e75ab51 commit 7c130da

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

changelog/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Merged from 2.1 branch:
66

77
- [bug] JAVA-1179: Request objects should be copied when executed.
88
- [improvement] JAVA-1182: Throw error when synchronous call made on I/O thread.
9+
- [bug] JAVA-1184: Unwrap StatementWrappers when extracting column definitions.
910

1011

1112
### 3.0.1
@@ -323,6 +324,7 @@ Merged from 2.0 branch:
323324

324325
- [bug] JAVA-1179: Request objects should be copied when executed.
325326
- [improvement] JAVA-1182: Throw error when synchronous call made on I/O thread.
327+
- [bug] JAVA-1184: Unwrap StatementWrappers when extracting column definitions.
326328

327329

328330
### 2.1.10.1

driver-core/src/test/java/com/datastax/driver/core/QueryLoggerTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1037,12 +1037,12 @@ public void should_log_all_parameters_when_max_unlimited_simple_statements_with_
10371037
.contains("42");
10381038
}
10391039

1040-
@CassandraVersion(major=2.0)
1040+
@CassandraVersion(major = 2.0)
10411041
@Test(groups = "short")
10421042
public void should_log_wrapped_bound_statement() throws Exception {
10431043
// given
10441044
normal.setLevel(TRACE);
1045-
queryLogger = QueryLogger.builder(cluster())
1045+
queryLogger = QueryLogger.builder()
10461046
.withConstantThreshold(Long.MAX_VALUE)
10471047
.withMaxQueryStringLength(Integer.MAX_VALUE)
10481048
.build();

0 commit comments

Comments
 (0)