Skip to content
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

build: fix the deletion of old pkg/sql/exec/*.eg.go files #40765

Merged
merged 1 commit into from
Sep 14, 2019

Commits on Sep 14, 2019

  1. build: fix the deletion of old pkg/sql/exec/*.eg.go files

    With the recent renaming of pkg/sql/exec to pkg/sql/colexec, we
    want to remove the files generated into the old directory. However,
    the previous commands were not error-prone, i.e. if the directory
    didn't exist, the command would fail which would in turn could fail
    the build. Now this is fixed by either redirecting the error into
    /dev/null or testing for presence of the old directory.
    
    Also, remove the unnecessary command to delete pkg/sql/exec/*.og.go
    files (this was needed only for a few weeks in the Fall of 2018).
    
    Release justification: Category 1: Non-production code changes.
    
    Release note: None
    yuzefovich committed Sep 14, 2019
    Configuration menu
    Copy the full SHA
    62b1678 View commit details
    Browse the repository at this point in the history