|
1 | 1 | // SPDX-License-Identifier: Apache-2.0 |
2 | 2 | // SPDX-FileCopyrightText: Copyright the Vortex contributors |
3 | 3 |
|
4 | | -use vortex::dtype::DType; |
5 | | -use vortex::dtype::extension::ExtDType; |
6 | | -use vortex::dtype::extension::ExtId; |
7 | | -use vortex::dtype::extension::ExtVTable; |
8 | | -use vortex::error::VortexResult; |
9 | | -use vortex::error::vortex_bail; |
10 | | -use vortex::error::vortex_ensure; |
11 | | -use vortex::error::vortex_ensure_eq; |
12 | | -use vortex::scalar::ScalarValue; |
| 4 | +use vortex_array::dtype::DType; |
| 5 | +use vortex_array::dtype::extension::ExtDType; |
| 6 | +use vortex_array::dtype::extension::ExtId; |
| 7 | +use vortex_array::dtype::extension::ExtVTable; |
| 8 | +use vortex_array::scalar::ScalarValue; |
| 9 | +use vortex_error::VortexResult; |
| 10 | +use vortex_error::vortex_bail; |
| 11 | +use vortex_error::vortex_ensure; |
| 12 | +use vortex_error::vortex_ensure_eq; |
13 | 13 |
|
14 | 14 | use crate::fixed_shape::FixedShapeTensor; |
15 | 15 | use crate::fixed_shape::FixedShapeTensorMetadata; |
@@ -77,8 +77,8 @@ impl ExtVTable for FixedShapeTensor { |
77 | 77 | #[cfg(test)] |
78 | 78 | mod tests { |
79 | 79 | use rstest::rstest; |
80 | | - use vortex::dtype::extension::ExtVTable; |
81 | | - use vortex::error::VortexResult; |
| 80 | + use vortex_array::dtype::extension::ExtVTable; |
| 81 | + use vortex_error::VortexResult; |
82 | 82 |
|
83 | 83 | use crate::fixed_shape::FixedShapeTensor; |
84 | 84 | use crate::fixed_shape::FixedShapeTensorMetadata; |
|
0 commit comments