-
Notifications
You must be signed in to change notification settings - Fork 172
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add HasRowIdMapping interface (#1288)
- Loading branch information
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
39 changes: 39 additions & 0 deletions
39
common/src/main/java/org/apache/comet/vector/HasRowIdMapping.java
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,39 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
package org.apache.comet.vector; | ||
|
||
/** | ||
* An interface could be implemented by vectors that have row id mapping. | ||
* | ||
* <p>For example, Iceberg's DeleteFile has a row id mapping to map row id to position. This | ||
* interface is used to set and get the row id mapping. The row id mapping is an array of integers, | ||
* where the index is the row id and the value is the position. Here is an example: | ||
* [0,1,2,3,4,5,6,7] -- Original status of the row id mapping array Position delete 2, 6 | ||
* [0,1,3,4,5,7,-,-] -- After applying position deletes [Set Num records to 6] | ||
*/ | ||
public interface HasRowIdMapping { | ||
default void setRowIdMapping(int[] rowIdMapping) { | ||
throw new UnsupportedOperationException("setRowIdMapping is not supported"); | ||
} | ||
|
||
default int[] getRowIdMapping() { | ||
throw new UnsupportedOperationException("getRowIdMapping is not supported"); | ||
} | ||
} |