-
Notifications
You must be signed in to change notification settings - Fork 2.5k
fix: Fix logical type issue for timestamp columns #17601
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
base: branch-0.x
Are you sure you want to change the base?
Changes from all commits
3f9b9dd
6eb4417
fc00c9f
b56c594
cea2e0b
52c59d4
00d784f
26712be
49b5250
d59a25b
f1910be
56c4aee
2e23bf3
a09cbf6
28efea5
1199934
bdf5261
a6a0942
820d136
711876a
5ef643e
ed4eeff
fcc5cda
65f6fdd
cc1e856
1b966a1
38edcb4
61fae65
833aac2
b16342b
0305c5c
7a664d3
235f750
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 |
|---|---|---|
|
|
@@ -52,6 +52,48 @@ | |
| <groupId>org.apache.hudi</groupId> | ||
| <artifactId>hudi-timeline-service</artifactId> | ||
| <version>${project.version}</version> | ||
| <!-- Exclude Jetty from timeline-service to use our managed version --> | ||
| <exclusions> | ||
| <exclusion> | ||
| <groupId>org.eclipse.jetty</groupId> | ||
| <artifactId>*</artifactId> | ||
|
Contributor
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. why do we need this change?
Collaborator
Author
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. Introduced to resolve some conflicts. Will check if we can avoid this or due to some flakiness. |
||
| </exclusion> | ||
| </exclusions> | ||
| </dependency> | ||
|
|
||
| <!-- Jetty: Explicitly declare all Jetty dependencies to ensure version alignment --> | ||
| <!-- This is critical when running in Spark/Hadoop environments that may have older Jetty versions --> | ||
| <dependency> | ||
| <groupId>org.eclipse.jetty</groupId> | ||
| <artifactId>jetty-server</artifactId> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.eclipse.jetty</groupId> | ||
| <artifactId>jetty-servlet</artifactId> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.eclipse.jetty</groupId> | ||
| <artifactId>jetty-http</artifactId> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.eclipse.jetty</groupId> | ||
| <artifactId>jetty-io</artifactId> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.eclipse.jetty</groupId> | ||
| <artifactId>jetty-util</artifactId> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.eclipse.jetty</groupId> | ||
| <artifactId>jetty-webapp</artifactId> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.eclipse.jetty</groupId> | ||
| <artifactId>jetty-xml</artifactId> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.eclipse.jetty</groupId> | ||
| <artifactId>jetty-security</artifactId> | ||
| </dependency> | ||
|
|
||
| <dependency> | ||
|
|
@@ -172,6 +214,10 @@ | |
| <groupId>org.pentaho</groupId> | ||
| <artifactId>*</artifactId> | ||
| </exclusion> | ||
| <exclusion> | ||
|
Contributor
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 hep me understand the necessity of this code change.
Collaborator
Author
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. They are due to some dependency conflicts. Most likely since we use spark3.5 for Azure CI. I can remove these dependency change to see which compilation or tests fail. |
||
| <groupId>org.codehaus.janino</groupId> | ||
| <artifactId>janino</artifactId> | ||
| </exclusion> | ||
| </exclusions> | ||
| </dependency> | ||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.