Skip to content

Commit c3ab8ba

Browse files
author
Jonny Dixon
committed
v19.1.0
Update for Dremio v19.1.0
1 parent 19f1af3 commit c3ab8ba

3 files changed

Lines changed: 8 additions & 2 deletions

File tree

dremio-sybasearp-plugin.jar

192 Bytes
Binary file not shown.

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@
2121
<modelVersion>4.0.0</modelVersion>
2222

2323
<groupId>com.dremio.plugin</groupId>
24-
<version>17.0.0</version>
24+
<version>19.1.0</version>
2525
<artifactId>dremio-sybasearp-plugin</artifactId>
2626
<name>Dremio Sybase ARP Community Connector</name>
2727

2828
<properties>
29-
<version.dremio>17.0.0-202107060524010627-31b5222b</version.dremio>
29+
<version.dremio>19.1.0-202111160130570172-0ee00450</version.dremio>
3030
</properties>
3131

3232
<dependencies>

src/main/java/com/dremio/exec/store/jdbc/dialect/SybaseDialect.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,11 @@ public boolean hasImplicitTableAlias() {
5050
return false;
5151
}
5252

53+
@Override
54+
public boolean supportsNestedAggregations() {
55+
return false;
56+
}
57+
5358
@Override
5459
public boolean supportsLiteral(CompleteType type) {
5560
if (CompleteType.BIT.equals(type)) {
@@ -101,6 +106,7 @@ public void unparseCall(final SqlWriter writer, final SqlCall call, final int le
101106
select.getOrderList(),
102107
null,
103108
null,
109+
null,
104110
SqlParserPos.ZERO);
105111

106112
super.unparseCall(writer, modifiedSelect, leftPrec, rightPrec);

0 commit comments

Comments
 (0)