-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from ydb-platform/feature_columnar
Preparing for columnar tables support
- Loading branch information
Showing
14 changed files
with
131 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,24 @@ | |
<version>1.3-SNAPSHOT</version> | ||
<!-- <version>X.Y[-SNAPSHOT]</version> --> | ||
<packaging>jar</packaging> | ||
<licenses> | ||
<license> | ||
<name>Apache License, Version 2.0</name> | ||
<url>https://www.apache.org/licenses/LICENSE-2.0</url> | ||
</license> | ||
</licenses> | ||
<scm> | ||
<url>https://github.com/ydb-platform/ydb-spark-connector</url> | ||
<connection>scm:git:https://github.com/ydb-platform/ydb-spark-connector.git</connection> | ||
<developerConnection>scm:git:https://github.com/ydb-platform/ydb-spark-connector.git</developerConnection> | ||
</scm> | ||
<developers> | ||
<developer> | ||
<name>Aleksandr Gorshenin</name> | ||
<email>[email protected]</email> | ||
<organization>YDB</organization> | ||
<organizationUrl>https://ydb.tech/</organizationUrl> | ||
</developer> | ||
<developer> | ||
<name>Maksim Zinal</name> | ||
<email>[email protected]</email> | ||
|
@@ -27,11 +44,11 @@ | |
<dependency> | ||
<groupId>tech.ydb</groupId> | ||
<artifactId>ydb-sdk-bom</artifactId> | ||
<version>2.2.9</version> | ||
<version>2.3.6</version> | ||
<type>pom</type> | ||
<scope>import</scope> | ||
</dependency> | ||
<dependency> | ||
<dependency> <!-- for manual dependency injection in shaded mode --> | ||
<groupId>io.grpc</groupId> | ||
<artifactId>grpc-bom</artifactId> | ||
<version>1.59.1</version> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package tech.ydb.spark.connector; | ||
|
||
/** | ||
* | ||
* @author zinal | ||
*/ | ||
public enum YdbStoreType { | ||
UNSPECIFIED, | ||
ROW, | ||
COLUMN, | ||
INDEX | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.