File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed
src/main/java/com/exasol/adapter/request/parser Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 44 <modelVersion >4.0.0</modelVersion >
55 <groupId >com.exasol</groupId >
66 <artifactId >virtual-schema-common-java</artifactId >
7- <version >8.0.0 </version >
7+ <version >8.0.1 </version >
88 <name >Common module of Exasol Virtual Schemas Adapters</name >
99 <description >This is one of the modules of Virtual Schemas Adapters. The libraries provided by this project are the foundation of the adapter development, i.e. adapters must be implemented on top of them.</description >
1010 <url >https://github.com/exasol/virtual-schema-common-java</url >
Original file line number Diff line number Diff line change 11package com .exasol .adapter .request .parser ;
22
3- import com .exasol .adapter .metadata .ColumnMetadata ;
4- import com .exasol .adapter .metadata .DataType ;
3+ import com .exasol .adapter .metadata .*;
54import com .exasol .adapter .metadata .DataType .ExaCharset ;
65import com .exasol .adapter .metadata .DataType .IntervalType ;
7- import com .exasol .adapter .metadata .TableMetadata ;
86import com .exasol .adapter .sql .*;
97
108import javax .json .JsonArray ;
@@ -126,7 +124,7 @@ private SqlStatementSelect parseSelect(final JsonObject select) {
126124 limit = parseLimit (select .getJsonObject ("limit" ));
127125 }
128126 return SqlStatementSelect .builder ().selectList (selectList ).fromClause (table ).whereClause (whereClause )
129- .groupBy (groupByClause ).having (having ).orderBy (orderBy ).limit (limit ).build ();
127+ .groupBy (groupByClause ).having (having ).orderBy (orderBy ).limit (limit ).build ();
130128 }
131129
132130 private SqlNode parseTable (final JsonObject exp ) {
@@ -330,7 +328,7 @@ private DataType getDataType(final JsonObject dataType) {
330328
331329 private DataType getHashtype (final JsonObject dataType ) {
332330 final int byteSize = dataType .getInt ("bytesize" );
333- return DataType .createGeometry (byteSize );
331+ return DataType .createHashtype (byteSize );
334332 }
335333
336334 private DataType getVarchar (final JsonObject dataType ) {
You can’t perform that action at this time.
0 commit comments