From 4608c0b404815f0d4816a795c8fc9cc668ebd249 Mon Sep 17 00:00:00 2001 From: Sasha Krassovsky Date: Fri, 28 Apr 2023 15:22:07 -0700 Subject: [PATCH] Add Dictionary Encoded vectors to PyVelox (#3859) Summary: This PR adds support for dictionary vectors in PyVelox. Currently base vectors are supported only for primitive (physical) types , and this also thus extends to Dictionary vectors. Dictionary vectors are required for additional fuzzer support, and expression eval in pyvelox. X-link: https://github.com/facebookincubator/velox/pull/3859 Reviewed By: pedroerp Differential Revision: D45409925 Pulled By: kgpai fbshipit-source-id: 6b05a0d543332fea48d912f93f267896d005f4e2 --- build/fbcode_builder/getdeps/dyndeps.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/build/fbcode_builder/getdeps/dyndeps.py b/build/fbcode_builder/getdeps/dyndeps.py index 64ab7b09a..e33db7940 100644 --- a/build/fbcode_builder/getdeps/dyndeps.py +++ b/build/fbcode_builder/getdeps/dyndeps.py @@ -15,9 +15,6 @@ import sys from struct import unpack from typing import List, Optional -from .envfuncs import path_search - - OBJECT_SUBDIRS = ("bin", "lib", "lib64")