We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0abb849 commit ef8c545Copy full SHA for ef8c545
1 file changed
java/driver/jni-validation/src/test/java/org/apache/arrow/adbc/driver/jni/SqlServerIntegrationTest.java
@@ -327,7 +327,7 @@ void selectQuery() throws Exception {
327
}
328
329
try (var stmt = conn.createStatement()) {
330
- stmt.setSqlQuery("SELECT CAST(@p1 AS NVARCHAR) || 'foo'");
+ stmt.setSqlQuery("SELECT CONCAT(CAST(@p1 AS NVARCHAR), 'foo')");
331
assertSchema(stmt.getParameterSchema())
332
.isEqualTo(new Schema(List.of(Field.nullable("@p1", Types.MinorType.VARCHAR.getType()))));
333
0 commit comments