Skip to content
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

Remove Raptor legacy connector #23588

Merged
merged 1 commit into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,6 @@ jobs:
!:trino-phoenix5,
!:trino-pinot,
!:trino-postgresql,
!:trino-raptor-legacy,
!:trino-redis,
!:trino-redshift,
!:trino-resource-group-managers,
Expand Down Expand Up @@ -476,7 +475,6 @@ jobs:
- { modules: plugin/trino-phoenix5 }
- { modules: plugin/trino-pinot }
- { modules: plugin/trino-postgresql }
- { modules: plugin/trino-raptor-legacy }
- { modules: plugin/trino-redis }
- { modules: plugin/trino-redshift }
- { modules: plugin/trino-redshift, profile: cloud-tests }
Expand Down
6 changes: 0 additions & 6 deletions core/trino-server/src/main/provisio/trino.xml
Original file line number Diff line number Diff line change
Expand Up @@ -279,12 +279,6 @@
</artifact>
</artifactSet>

<artifactSet to="plugin/raptor-legacy">
<artifact id="${project.groupId}:trino-raptor-legacy:zip:${project.version}">
<unpack />
</artifact>
</artifactSet>

<artifactSet to="plugin/redis">
<artifact id="${project.groupId}:trino-redis:zip:${project.version}">
<unpack />
Expand Down
2 changes: 0 additions & 2 deletions docs/release-template.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,6 @@

## Prometheus connector

## Raptor connector

## Redis connector

## Redshift connector
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,6 @@ public static OutputStreamOrcDataSink create(TrinoOutputFile outputFile)
return new OutputStreamOrcDataSink(outputFile.create(memoryContext), memoryContext);
}

// Do not use this method, it is here only for io.trino.plugin.raptor.legacy.storage.OrcFileWriter.createOrcDataSink
// and it should be removed in the future
@Deprecated
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice find

public static OutputStreamOrcDataSink create(OutputStream outputStream)
throws IOException
{
return new OutputStreamOrcDataSink(outputStream, newSimpleAggregatedMemoryContext());
}

private OutputStreamOrcDataSink(OutputStream outputStream, AggregatedMemoryContext memoryContext)
{
this.output = new OutputStreamSliceOutput(requireNonNull(outputStream, "outputStream is null"));
Expand Down
306 changes: 0 additions & 306 deletions plugin/trino-raptor-legacy/pom.xml

This file was deleted.

This file was deleted.

Loading
Loading