]> git.proxmox.com Git - ceph.git/blob - ceph/src/arrow/java/api-changes.md
import quincy 17.2.0
[ceph.git] / ceph / src / arrow / java / api-changes.md
1 <!---
2 Licensed to the Apache Software Foundation (ASF) under one
3 or more contributor license agreements. See the NOTICE file
4 distributed with this work for additional information
5 regarding copyright ownership. The ASF licenses this file
6 to you under the Apache License, Version 2.0 (the
7 "License"); you may not use this file except in compliance
8 with the License. You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing,
13 software distributed under the License is distributed on an
14 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 KIND, either express or implied. See the License for the
16 specific language governing permissions and limitations
17 under the License.
18 -->
19
20 # Arrow Java API Changes
21
22 This document tracks behavior changes to Java APIs, as listed below.
23
24 - **[ARROW-5973](https://issues.apache.org/jira/browse/ARROW-5973)**:
25 * **Start date**: 2019/07/18
26 * **Resolve date**: 2019/07/20
27 * **Brief description**: The semantics of the get methods for [VarCharVector](./vector/scr/main/org/apache/arrow/vector/VarCharVector.java), [VarBinaryVector](./vector/scr/main/org/apache/arrow/vector/VarBinaryVector.java), and [FixedSizeBinaryVector](./vector/scr/main/org/apache/arrow/vector/FixedSizeBinaryVector.java) changes. In the past, if the validity bit is clear, the methods throw throws an IllegalStateException when NULL_CHECKING_ENABLED is set, or returns an empty object when the flag is not set. Now, the get methods return a null if the validity bit is clear.
28
29 - **[ARROW-5842](https://issues.apache.org/jira/browse/ARROW-5842)**:
30 * **Start date**: 2019/07/04
31 * **Resolve date**: 2019/07/11
32 * **Brief description**: The semantics of lastSet member in class [ListVector](./vector/src/main/java/org/apache/arrow/vector/complex/ListVector.java) changes. In the past, it refers to the next index that will be set. After the change it points to the last index that is actually set.