Skip to content

Commit

Permalink
v19.1.0
Browse files Browse the repository at this point in the history
Update for Dremio v19.1.0
  • Loading branch information
Jonny Dixon committed Jan 13, 2022
1 parent 19f1af3 commit c3ab8ba
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
Binary file modified dremio-sybasearp-plugin.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@
<modelVersion>4.0.0</modelVersion>

<groupId>com.dremio.plugin</groupId>
<version>17.0.0</version>
<version>19.1.0</version>
<artifactId>dremio-sybasearp-plugin</artifactId>
<name>Dremio Sybase ARP Community Connector</name>

<properties>
<version.dremio>17.0.0-202107060524010627-31b5222b</version.dremio>
<version.dremio>19.1.0-202111160130570172-0ee00450</version.dremio>
</properties>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,11 @@ public boolean hasImplicitTableAlias() {
return false;
}

@Override
public boolean supportsNestedAggregations() {
return false;
}

@Override
public boolean supportsLiteral(CompleteType type) {
if (CompleteType.BIT.equals(type)) {
Expand Down Expand Up @@ -101,6 +106,7 @@ public void unparseCall(final SqlWriter writer, final SqlCall call, final int le
select.getOrderList(),
null,
null,
null,
SqlParserPos.ZERO);

super.unparseCall(writer, modifiedSelect, leftPrec, rightPrec);
Expand Down

0 comments on commit c3ab8ba

Please sign in to comment.