@@ -49,18 +49,18 @@ __all__ = [
49
49
"SimpleColumnVARCHAR" ,
50
50
"TypeKind" ,
51
51
"VeloxType" ,
52
- "VeloxArrayType " ,
53
- "VeloxFixedArrayType " ,
54
- "VeloxMapType " ,
55
- "VeloxRowType " ,
56
- "VeloxType_BIGINT " ,
57
- "VeloxType_BOOLEAN " ,
58
- "VeloxType_DOUBLE " ,
59
- "VeloxType_INTEGER " ,
60
- "VeloxType_REAL " ,
61
- "VeloxType_SMALLINT " ,
62
- "VeloxType_TINYINT " ,
63
- "VeloxType_VARCHAR " ,
52
+ "ArrayType " ,
53
+ "FixedSizeArrayType " ,
54
+ "MapType " ,
55
+ "RowType " ,
56
+ "BigintType " ,
57
+ "BooleanType " ,
58
+ "DoubleType " ,
59
+ "IntegerType " ,
60
+ "RealType " ,
61
+ "SmallintType " ,
62
+ "TinyintType " ,
63
+ "VarcharType " ,
64
64
"Vocab" ,
65
65
"fb_SentencePiece" ,
66
66
"Column" ,
@@ -2153,30 +2153,30 @@ class VeloxType:
2153
2153
def kind_name (self ) -> str : ...
2154
2154
__pybind11_module_local_v4_clang_libstdcpp_cxxabi1002__ = ... # type: PyCapsule # value = <capsule object NULL at 0x7f50e2a512d0>
2155
2155
pass
2156
- class VeloxArrayType (VeloxType ):
2156
+ class ArrayType (VeloxType ):
2157
2157
def __init__ (self , arg0 : VeloxType ) -> None : ...
2158
2158
def element_type (self ) -> VeloxType : ...
2159
2159
def kind (self ) -> TypeKind : ...
2160
2160
def kind_name (self ) -> str : ...
2161
2161
__pybind11_module_local_v4_clang_libstdcpp_cxxabi1002__ = ... # type: PyCapsule # value = <capsule object NULL at 0x7f50e2a69660>
2162
2162
pass
2163
- class VeloxFixedArrayType (VeloxType ):
2163
+ class FixedSizeArrayType (VeloxType ):
2164
2164
def __init__ (self , arg0 : int , arg1 : VeloxType ) -> None : ...
2165
2165
def element_type (self ) -> VeloxType : ...
2166
2166
def fixed_width (self ) -> int : ...
2167
2167
def kind (self ) -> TypeKind : ...
2168
2168
def kind_name (self ) -> str : ...
2169
2169
__pybind11_module_local_v4_clang_libstdcpp_cxxabi1002__ = ... # type: PyCapsule # value = <capsule object NULL at 0x7f50e2a69780>
2170
2170
pass
2171
- class VeloxMapType (VeloxType ):
2171
+ class MapType (VeloxType ):
2172
2172
def __init__ (self , arg0 : VeloxType , arg1 : VeloxType ) -> None : ...
2173
2173
def key_type (self ) -> VeloxType : ...
2174
2174
def kind (self ) -> TypeKind : ...
2175
2175
def kind_name (self ) -> str : ...
2176
2176
def value_type (self ) -> VeloxType : ...
2177
2177
__pybind11_module_local_v4_clang_libstdcpp_cxxabi1002__ = ... # type: PyCapsule # value = <capsule object NULL at 0x7f50e2a69c30>
2178
2178
pass
2179
- class VeloxRowType (VeloxType ):
2179
+ class RowType (VeloxType ):
2180
2180
def __init__ (self , arg0 : List [str ], arg1 : List [VeloxType ]) -> None : ...
2181
2181
def child_at (self , arg0 : int ) -> VeloxType : ...
2182
2182
def contains_child (self , arg0 : str ) -> bool : ...
@@ -2187,49 +2187,49 @@ class VeloxRowType(VeloxType):
2187
2187
def size (self ) -> int : ...
2188
2188
__pybind11_module_local_v4_clang_libstdcpp_cxxabi1002__ = ... # type: PyCapsule # value = <capsule object NULL at 0x7f50e2a70120>
2189
2189
pass
2190
- class VeloxType_BIGINT (VeloxType ):
2190
+ class BigintType (VeloxType ):
2191
2191
def __init__ (self ) -> None : ...
2192
2192
def kind (self ) -> TypeKind : ...
2193
2193
def kind_name (self ) -> str : ...
2194
2194
__pybind11_module_local_v4_clang_libstdcpp_cxxabi1002__ = ... # type: PyCapsule # value = <capsule object NULL at 0x7f50e2a51540>
2195
2195
pass
2196
- class VeloxType_BOOLEAN (VeloxType ):
2196
+ class BooleanType (VeloxType ):
2197
2197
def __init__ (self ) -> None : ...
2198
2198
def kind (self ) -> TypeKind : ...
2199
2199
def kind_name (self ) -> str : ...
2200
2200
__pybind11_module_local_v4_clang_libstdcpp_cxxabi1002__ = ... # type: PyCapsule # value = <capsule object NULL at 0x7f50e2a5eea0>
2201
2201
pass
2202
- class VeloxType_DOUBLE (VeloxType ):
2202
+ class DoubleType (VeloxType ):
2203
2203
def __init__ (self ) -> None : ...
2204
2204
def kind (self ) -> TypeKind : ...
2205
2205
def kind_name (self ) -> str : ...
2206
2206
__pybind11_module_local_v4_clang_libstdcpp_cxxabi1002__ = ... # type: PyCapsule # value = <capsule object NULL at 0x7f50e2a65540>
2207
2207
pass
2208
- class VeloxType_INTEGER (VeloxType ):
2208
+ class IntegerType (VeloxType ):
2209
2209
def __init__ (self ) -> None : ...
2210
2210
def kind (self ) -> TypeKind : ...
2211
2211
def kind_name (self ) -> str : ...
2212
2212
__pybind11_module_local_v4_clang_libstdcpp_cxxabi1002__ = ... # type: PyCapsule # value = <capsule object NULL at 0x7f50e2a553f0>
2213
2213
pass
2214
- class VeloxType_REAL (VeloxType ):
2214
+ class RealType (VeloxType ):
2215
2215
def __init__ (self ) -> None : ...
2216
2216
def kind (self ) -> TypeKind : ...
2217
2217
def kind_name (self ) -> str : ...
2218
2218
__pybind11_module_local_v4_clang_libstdcpp_cxxabi1002__ = ... # type: PyCapsule # value = <capsule object NULL at 0x7f50e2a627b0>
2219
2219
pass
2220
- class VeloxType_SMALLINT (VeloxType ):
2220
+ class SmallintType (VeloxType ):
2221
2221
def __init__ (self ) -> None : ...
2222
2222
def kind (self ) -> TypeKind : ...
2223
2223
def kind_name (self ) -> str : ...
2224
2224
__pybind11_module_local_v4_clang_libstdcpp_cxxabi1002__ = ... # type: PyCapsule # value = <capsule object NULL at 0x7f50e2a59240>
2225
2225
pass
2226
- class VeloxType_TINYINT (VeloxType ):
2226
+ class TinyintType (VeloxType ):
2227
2227
def __init__ (self ) -> None : ...
2228
2228
def kind (self ) -> TypeKind : ...
2229
2229
def kind_name (self ) -> str : ...
2230
2230
__pybind11_module_local_v4_clang_libstdcpp_cxxabi1002__ = ... # type: PyCapsule # value = <capsule object NULL at 0x7f50e2a5e090>
2231
2231
pass
2232
- class VeloxType_VARCHAR (VeloxType ):
2232
+ class VarcharType (VeloxType ):
2233
2233
def __init__ (self ) -> None : ...
2234
2234
def kind (self ) -> TypeKind : ...
2235
2235
def kind_name (self ) -> str : ...
@@ -2265,94 +2265,94 @@ class fb_SentencePiece:
2265
2265
def process (self , arg0 : str ) -> List [str ]: ...
2266
2266
pass
2267
2267
@overload
2268
- def Column (arg0 : VeloxType_DOUBLE ) -> SimpleColumnDOUBLE :
2268
+ def Column (arg0 : DoubleType ) -> SimpleColumnDOUBLE :
2269
2269
pass
2270
2270
@overload
2271
- def Column (arg0 : VeloxType_INTEGER ) -> SimpleColumnINTEGER :
2271
+ def Column (arg0 : IntegerType ) -> SimpleColumnINTEGER :
2272
2272
pass
2273
2273
@overload
2274
- def Column (arg0 : VeloxType_INTEGER , arg1 : list ) -> SimpleColumnINTEGER :
2274
+ def Column (arg0 : IntegerType , arg1 : list ) -> SimpleColumnINTEGER :
2275
2275
pass
2276
2276
@overload
2277
- def Column (arg0 : VeloxType_SMALLINT , arg1 : tuple ) -> SimpleColumnSMALLINT :
2277
+ def Column (arg0 : SmallintType , arg1 : tuple ) -> SimpleColumnSMALLINT :
2278
2278
pass
2279
2279
@overload
2280
- def Column (arg0 : VeloxType_SMALLINT ) -> SimpleColumnSMALLINT :
2280
+ def Column (arg0 : SmallintType ) -> SimpleColumnSMALLINT :
2281
2281
pass
2282
2282
@overload
2283
- def Column (arg0 : VeloxType_REAL , arg1 : tuple ) -> SimpleColumnREAL :
2283
+ def Column (arg0 : RealType , arg1 : tuple ) -> SimpleColumnREAL :
2284
2284
pass
2285
2285
@overload
2286
- def Column (arg0 : VeloxRowType ) -> RowColumn :
2286
+ def Column (arg0 : RowType ) -> RowColumn :
2287
2287
pass
2288
2288
@overload
2289
- def Column (arg0 : VeloxType_SMALLINT , arg1 : list ) -> SimpleColumnSMALLINT :
2289
+ def Column (arg0 : SmallintType , arg1 : list ) -> SimpleColumnSMALLINT :
2290
2290
pass
2291
2291
@overload
2292
- def Column (arg0 : VeloxType_TINYINT , arg1 : tuple ) -> SimpleColumnTINYINT :
2292
+ def Column (arg0 : TinyintType , arg1 : tuple ) -> SimpleColumnTINYINT :
2293
2293
pass
2294
2294
@overload
2295
- def Column (arg0 : VeloxFixedArrayType , arg1 : list ) -> ArrayColumn :
2295
+ def Column (arg0 : FixedSizeArrayType , arg1 : list ) -> ArrayColumn :
2296
2296
pass
2297
2297
@overload
2298
- def Column (arg0 : VeloxType_BIGINT , arg1 : tuple ) -> SimpleColumnBIGINT :
2298
+ def Column (arg0 : BigintType , arg1 : tuple ) -> SimpleColumnBIGINT :
2299
2299
pass
2300
2300
@overload
2301
- def Column (arg0 : VeloxArrayType ) -> ArrayColumn :
2301
+ def Column (arg0 : ArrayType ) -> ArrayColumn :
2302
2302
pass
2303
2303
@overload
2304
- def Column (arg0 : VeloxType_DOUBLE , arg1 : tuple ) -> SimpleColumnDOUBLE :
2304
+ def Column (arg0 : DoubleType , arg1 : tuple ) -> SimpleColumnDOUBLE :
2305
2305
pass
2306
2306
@overload
2307
- def Column (arg0 : VeloxArrayType , arg1 : list ) -> ArrayColumn :
2307
+ def Column (arg0 : ArrayType , arg1 : list ) -> ArrayColumn :
2308
2308
pass
2309
2309
@overload
2310
- def Column (arg0 : VeloxType_BOOLEAN ) -> SimpleColumnBOOLEAN :
2310
+ def Column (arg0 : BooleanType ) -> SimpleColumnBOOLEAN :
2311
2311
pass
2312
2312
@overload
2313
- def Column (arg0 : VeloxType_VARCHAR , arg1 : tuple ) -> SimpleColumnVARCHAR :
2313
+ def Column (arg0 : VarcharType , arg1 : tuple ) -> SimpleColumnVARCHAR :
2314
2314
pass
2315
2315
@overload
2316
- def Column (arg0 : VeloxMapType ) -> MapColumn :
2316
+ def Column (arg0 : MapType ) -> MapColumn :
2317
2317
pass
2318
2318
@overload
2319
- def Column (arg0 : VeloxType_TINYINT ) -> SimpleColumnTINYINT :
2319
+ def Column (arg0 : TinyintType ) -> SimpleColumnTINYINT :
2320
2320
pass
2321
2321
@overload
2322
- def Column (arg0 : VeloxFixedArrayType ) -> ArrayColumn :
2322
+ def Column (arg0 : FixedSizeArrayType ) -> ArrayColumn :
2323
2323
pass
2324
2324
@overload
2325
- def Column (arg0 : VeloxType_INTEGER , arg1 : tuple ) -> SimpleColumnINTEGER :
2325
+ def Column (arg0 : IntegerType , arg1 : tuple ) -> SimpleColumnINTEGER :
2326
2326
pass
2327
2327
@overload
2328
- def Column (arg0 : VeloxType_REAL ) -> SimpleColumnREAL :
2328
+ def Column (arg0 : RealType ) -> SimpleColumnREAL :
2329
2329
pass
2330
2330
@overload
2331
- def Column (arg0 : VeloxType_BIGINT ) -> SimpleColumnBIGINT :
2331
+ def Column (arg0 : BigintType ) -> SimpleColumnBIGINT :
2332
2332
pass
2333
2333
@overload
2334
- def Column (arg0 : VeloxType_TINYINT , arg1 : list ) -> SimpleColumnTINYINT :
2334
+ def Column (arg0 : TinyintType , arg1 : list ) -> SimpleColumnTINYINT :
2335
2335
pass
2336
2336
@overload
2337
- def Column (arg0 : VeloxType_DOUBLE , arg1 : list ) -> SimpleColumnDOUBLE :
2337
+ def Column (arg0 : DoubleType , arg1 : list ) -> SimpleColumnDOUBLE :
2338
2338
pass
2339
2339
@overload
2340
- def Column (arg0 : VeloxType_BIGINT , arg1 : list ) -> SimpleColumnBIGINT :
2340
+ def Column (arg0 : BigintType , arg1 : list ) -> SimpleColumnBIGINT :
2341
2341
pass
2342
2342
@overload
2343
- def Column (arg0 : VeloxType_REAL , arg1 : list ) -> SimpleColumnREAL :
2343
+ def Column (arg0 : RealType , arg1 : list ) -> SimpleColumnREAL :
2344
2344
pass
2345
2345
@overload
2346
- def Column (arg0 : VeloxType_BOOLEAN , arg1 : tuple ) -> SimpleColumnBOOLEAN :
2346
+ def Column (arg0 : BooleanType , arg1 : tuple ) -> SimpleColumnBOOLEAN :
2347
2347
pass
2348
2348
@overload
2349
- def Column (arg0 : VeloxType_VARCHAR ) -> SimpleColumnVARCHAR :
2349
+ def Column (arg0 : VarcharType ) -> SimpleColumnVARCHAR :
2350
2350
pass
2351
2351
@overload
2352
- def Column (arg0 : VeloxType_VARCHAR , arg1 : list ) -> SimpleColumnVARCHAR :
2352
+ def Column (arg0 : VarcharType , arg1 : list ) -> SimpleColumnVARCHAR :
2353
2353
pass
2354
2354
@overload
2355
- def Column (arg0 : VeloxType_BOOLEAN , arg1 : list ) -> SimpleColumnBOOLEAN :
2355
+ def Column (arg0 : BooleanType , arg1 : list ) -> SimpleColumnBOOLEAN :
2356
2356
pass
2357
2357
@overload
2358
2358
def ConstantColumn (arg0 : handle , arg1 : int , arg2 : VeloxType ) -> BaseColumn :
@@ -2361,28 +2361,28 @@ def ConstantColumn(arg0: handle, arg1: int, arg2: VeloxType) -> BaseColumn:
2361
2361
def ConstantColumn (arg0 : handle , arg1 : int ) -> BaseColumn :
2362
2362
pass
2363
2363
@overload
2364
- def _import_from_arrow (arg0 : VeloxType_SMALLINT , arg1 : int , arg2 : int ) -> SimpleColumnSMALLINT :
2364
+ def _import_from_arrow (arg0 : SmallintType , arg1 : int , arg2 : int ) -> SimpleColumnSMALLINT :
2365
2365
pass
2366
2366
@overload
2367
- def _import_from_arrow (arg0 : VeloxType_DOUBLE , arg1 : int , arg2 : int ) -> SimpleColumnDOUBLE :
2367
+ def _import_from_arrow (arg0 : DoubleType , arg1 : int , arg2 : int ) -> SimpleColumnDOUBLE :
2368
2368
pass
2369
2369
@overload
2370
- def _import_from_arrow (arg0 : VeloxType_TINYINT , arg1 : int , arg2 : int ) -> SimpleColumnTINYINT :
2370
+ def _import_from_arrow (arg0 : TinyintType , arg1 : int , arg2 : int ) -> SimpleColumnTINYINT :
2371
2371
pass
2372
2372
@overload
2373
- def _import_from_arrow (arg0 : VeloxType_BOOLEAN , arg1 : int , arg2 : int ) -> SimpleColumnBOOLEAN :
2373
+ def _import_from_arrow (arg0 : BooleanType , arg1 : int , arg2 : int ) -> SimpleColumnBOOLEAN :
2374
2374
pass
2375
2375
@overload
2376
- def _import_from_arrow (arg0 : VeloxType_INTEGER , arg1 : int , arg2 : int ) -> SimpleColumnINTEGER :
2376
+ def _import_from_arrow (arg0 : IntegerType , arg1 : int , arg2 : int ) -> SimpleColumnINTEGER :
2377
2377
pass
2378
2378
@overload
2379
- def _import_from_arrow (arg0 : VeloxRowType , arg1 : int , arg2 : int ) -> RowColumn :
2379
+ def _import_from_arrow (arg0 : RowType , arg1 : int , arg2 : int ) -> RowColumn :
2380
2380
pass
2381
2381
@overload
2382
- def _import_from_arrow (arg0 : VeloxType_BIGINT , arg1 : int , arg2 : int ) -> SimpleColumnBIGINT :
2382
+ def _import_from_arrow (arg0 : BigintType , arg1 : int , arg2 : int ) -> SimpleColumnBIGINT :
2383
2383
pass
2384
2384
@overload
2385
- def _import_from_arrow (arg0 : VeloxType_REAL , arg1 : int , arg2 : int ) -> SimpleColumnREAL :
2385
+ def _import_from_arrow (arg0 : RealType , arg1 : int , arg2 : int ) -> SimpleColumnREAL :
2386
2386
pass
2387
2387
def _populate_dense_features_nopresence (arg0 : RowColumn , arg1 : int ) -> None :
2388
2388
pass
0 commit comments