-
Notifications
You must be signed in to change notification settings - Fork 303
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Apache Arrow version upgrade to 15.0.2 #2364
Changes from all commits
06842e4
c192eda
3780568
ae2f681
db5cb4c
d41782e
3a27b7a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -183,7 +183,7 @@ public void doGetTable() | |
BlockAllocator blockAllocator = new BlockAllocatorImpl(); | ||
String[] schema = {"DATA_TYPE", "COLUMN_SIZE", "COLUMN_NAME", "DECIMAL_DIGITS", "NUM_PREC_RADIX"}; | ||
Object[][] values = {{Types.INTEGER, 12, "testCol1", 0, 0}, {Types.VARCHAR, 25, "testCol2", 0, 0}, | ||
{Types.TIMESTAMP, 93, "testCol3", 0, 0}, {Types.TIMESTAMP_WITH_TIMEZONE, 93, "testCol4", 0, 0}}; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this is a big difference, is arrow no longer supporting TIMESTAMP with Timezone? |
||
{Types.TIMESTAMP, 93, "testCol3", 0, 0}, {Types.VARCHAR, 93, "testCol4", 0, 0}}; | ||
AtomicInteger rowNumber = new AtomicInteger(-1); | ||
ResultSet resultSet = mockResultSet(schema, values, rowNumber); | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,6 +30,12 @@ | |
<groupId>software.amazon.awssdk</groupId> | ||
<artifactId>apache-client</artifactId> | ||
<version>${aws-sdk-v2.version}</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>commons-logging</groupId> | ||
<artifactId>commons-logging</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>software.amazon.awssdk</groupId> | ||
|
@@ -216,8 +222,8 @@ | |
</dependency> | ||
<dependency> | ||
<groupId>org.bouncycastle</groupId> | ||
<artifactId>bcprov-jdk15on</artifactId> | ||
<version>1.70</version> | ||
<artifactId>bcprov-jdk18on</artifactId> | ||
<version>1.78.1</version> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you please check if bouncy castle are part of shaded jar? if no, can we included it in and relocate? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bouncy Castle was already included in the shaded JAR; I have now relocated the class path to prevent any conflicts. |
||
</dependency> | ||
<dependency> | ||
<groupId>org.junit.jupiter</groupId> | ||
|
@@ -351,6 +357,10 @@ | |
<pattern>io.netty</pattern> | ||
<shadedPattern>athena.com.io.netty</shadedPattern> | ||
</relocation> | ||
<relocation> | ||
<pattern>org.bouncycastle</pattern> | ||
<shadedPattern>athena.com.org.bouncycastle</shadedPattern> | ||
</relocation> | ||
</relocations> | ||
</configuration> | ||
<dependencies> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe this won't be needed once #2555 is merged.