Skip to content

Commit 59c92ab

Browse files
authored
Fix lockfiles (#7433)
## Summary <!-- If this PR is related to a tracked effort, please link to the relevant issue here (e.g., `Closes: #123`). Otherwise, feel free to ignore / delete this. In this section, please: 1. Explain the rationale for this change. 2. Summarize the changes included in this PR. A general rule of thumb is that larger PRs should have larger summaries. If there are a lot of changes, please help us review the code by explaining what was changed and why. If there is an issue or discussion attached, there is no need to duplicate all the details, but clarity is always preferred over brevity. --> Closes: #000 <!-- ## API Changes Uncomment this section if there are any user-facing changes. Consider whether the change affects users in one of the following ways: 1. Breaks public APIs in some way. 2. Changes the underlying behavior of one of the engine integrations. 3. Should some documentation be updated to reflect this change? If a public API is changed in a breaking manner, make sure to add the appropriate label. You can run `./scripts/public-api.sh` locally to see if there are any public API changes (and this also runs in our CI). --> ## Testing <!-- Please describe how this change was tested. Here are some common categories for testing in Vortex: 1. Verifying existing behavior is maintained. 2. Verifying new behavior and functionality works correctly. 3. Serialization compatibility (backwards and forwards) should be maintained or explicitly broken. --> Signed-off-by: Connor Tsui <connor.tsui20@gmail.com>
1 parent 646e6be commit 59c92ab

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

vortex-array/public-api.lock

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3898,6 +3898,8 @@ pub fn vortex_array::arrays::scalar_fn::plugin::ScalarFnArrayPlugin<V>::deserial
38983898

38993899
pub fn vortex_array::arrays::scalar_fn::plugin::ScalarFnArrayPlugin<V>::id(&self) -> vortex_array::ArrayId
39003900

3901+
pub fn vortex_array::arrays::scalar_fn::plugin::ScalarFnArrayPlugin<V>::is_supported_encoding(&self, id: &vortex_array::ArrayId) -> bool
3902+
39013903
pub fn vortex_array::arrays::scalar_fn::plugin::ScalarFnArrayPlugin<V>::serialize(&self, array: &vortex_array::ArrayRef, session: &vortex_session::VortexSession) -> vortex_error::VortexResult<core::option::Option<alloc::vec::Vec<u8>>>
39023904

39033905
pub trait vortex_array::arrays::scalar_fn::plugin::ScalarFnArrayVTable: vortex_array::scalar_fn::ScalarFnVTable
@@ -19432,6 +19434,8 @@ pub fn vortex_array::arrays::scalar_fn::plugin::ScalarFnArrayPlugin<V>::deserial
1943219434

1943319435
pub fn vortex_array::arrays::scalar_fn::plugin::ScalarFnArrayPlugin<V>::id(&self) -> vortex_array::ArrayId
1943419436

19437+
pub fn vortex_array::arrays::scalar_fn::plugin::ScalarFnArrayPlugin<V>::is_supported_encoding(&self, id: &vortex_array::ArrayId) -> bool
19438+
1943519439
pub fn vortex_array::arrays::scalar_fn::plugin::ScalarFnArrayPlugin<V>::serialize(&self, array: &vortex_array::ArrayRef, session: &vortex_session::VortexSession) -> vortex_error::VortexResult<core::option::Option<alloc::vec::Vec<u8>>>
1943619440

1943719441
pub trait vortex_array::vtable::ArrayVTable: 'static + core::clone::Clone + core::marker::Sized + core::marker::Send + core::marker::Sync + core::fmt::Debug
@@ -23100,6 +23104,10 @@ pub fn vortex_array::arrays::scalar_fn::plugin::ScalarFnArrayPlugin<V>::id(&self
2310023104

2310123105
pub fn vortex_array::arrays::scalar_fn::plugin::ScalarFnArrayPlugin<V>::id(&self) -> vortex_array::ArrayId
2310223106

23107+
pub fn vortex_array::arrays::scalar_fn::plugin::ScalarFnArrayPlugin<V>::is_supported_encoding(&self, id: &vortex_array::ArrayId) -> bool
23108+
23109+
pub fn vortex_array::arrays::scalar_fn::plugin::ScalarFnArrayPlugin<V>::is_supported_encoding(&self, id: &vortex_array::ArrayId) -> bool
23110+
2310323111
pub fn vortex_array::arrays::scalar_fn::plugin::ScalarFnArrayPlugin<V>::serialize(&self, array: &vortex_array::ArrayRef, session: &vortex_session::VortexSession) -> vortex_error::VortexResult<core::option::Option<alloc::vec::Vec<u8>>>
2310423112

2310523113
pub fn vortex_array::arrays::scalar_fn::plugin::ScalarFnArrayPlugin<V>::serialize(&self, array: &vortex_array::ArrayRef, session: &vortex_session::VortexSession) -> vortex_error::VortexResult<core::option::Option<alloc::vec::Vec<u8>>>

0 commit comments

Comments
 (0)