-
Notifications
You must be signed in to change notification settings - Fork 265
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Predicate Pushdown across join and Fix Materialization Bugs #316
Conversation
statement_binder_context.py
@@ -217,7 +256,8 @@ def create_sample_video_as_blob(num_frames=NUM_FRAMES): | |||
|
|||
def copy_sample_videos_to_upload_dir(): | |||
shutil.copyfile( | |||
"data/ua_detrac/ua_detrac.mp4", os.path.join(UPLOAD_DIR, "ua_detrac.mp4") | |||
"data/ua_detrac/ua_detrac.mp4", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will these hard-coded paths work on Windows?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
They might not. I’ll fix these. Looks like we have a lot of instances in the this file. Can be done in a separate PR.
No description provided.