-
Notifications
You must be signed in to change notification settings - Fork 183
Remove zetasql #272
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
Merged
peytondmurray
merged 13 commits into
tensorflow:master
from
andrewfulton9:remove-zetasql
Jun 23, 2025
Merged
Remove zetasql #272
Changes from 12 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
cf33a66
adds linting configuration and workflow
andrewfulton9 ae73b59
update error codes
andrewfulton9 7b1c077
reformat linting ignore rules
andrewfulton9 ef80244
add patch to to ignore hooks
andrewfulton9 28a6b3b
run linter
andrewfulton9 9ab66ad
fix formatting error
andrewfulton9 d6156ad
Remove ZetaSQL from workspace
smokestacklightnin 69c58c2
add import for re2.BUILD remove tfx_bsl sql_util dependencies
andrewfulton9 e7bfcc0
fix test call
andrewfulton9 2679d60
don't test 3.9 right now
andrewfulton9 b303822
fix tests
andrewfulton9 144bc08
revert tfx-bsl repo and branch to official
andrewfulton9 3848685
Merge branch 'master' into remove-zetasql
peytondmurray File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,11 +1,14 @@ | ||
| # Needed to work with ZetaSQL dependency. | ||
| # Zetasql is removed. | ||
| # This is a candidate for removal | ||
| build --cxxopt="-std=c++17" | ||
|
|
||
| # Needed to avoid zetasql proto error. | ||
| # Zetasql is removed. | ||
| # This is a candidate for removal | ||
| build --protocopt=--experimental_allow_proto3_optional | ||
|
|
||
| # icu@: In create_linking_context: in call to create_linking_context(), | ||
| # parameter 'user_link_flags' is deprecated and will be removed soon. | ||
| # It may be temporarily re-enabled by setting --incompatible_require_linker_input_cc_api=false | ||
| build --incompatible_require_linker_input_cc_api=false | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| 6.5.0 | ||
| 6.5.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| name: pre-commit | ||
|
|
||
| on: | ||
| pull_request: | ||
| push: | ||
| branches: [master] | ||
|
|
||
| jobs: | ||
| pre-commit: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/[email protected] | ||
| with: | ||
| # Ensure the full history is fetched | ||
| # This is required to run pre-commit on a specific set of commits | ||
| # TODO: Remove this when all the pre-commit issues are fixed | ||
| fetch-depth: 0 | ||
| - uses: actions/[email protected] | ||
| with: | ||
| python-version: 3.13 | ||
| - uses: pre-commit/[email protected] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -126,4 +126,4 @@ dmypy.json | |
| .pyre/ | ||
|
|
||
| # pb2.py files | ||
| *_pb2.py | ||
| *_pb2.py | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,39 @@ | ||
| # pre-commit is a tool to perform a predefined set of tasks manually and/or | ||
| # automatically before git commits are made. | ||
| # | ||
| # Config reference: https://pre-commit.com/#pre-commit-configyaml---top-level | ||
| # | ||
| # Common tasks | ||
| # | ||
| # - Register git hooks: pre-commit install --install-hooks | ||
| # - Run on all files: pre-commit run --all-files | ||
| # | ||
| # These pre-commit hooks are run as CI. | ||
| # | ||
| # NOTE: if it can be avoided, add configs/args in pyproject.toml or below instead of creating a new `.config.file`. | ||
| # https://pre-commit.ci/#configuration | ||
| ci: | ||
| autoupdate_schedule: monthly | ||
| autofix_commit_msg: | | ||
| [pre-commit.ci] Apply automatic pre-commit fixes | ||
|
|
||
| repos: | ||
| # general | ||
| - repo: https://github.com/pre-commit/pre-commit-hooks | ||
| rev: v4.6.0 | ||
| hooks: | ||
| - id: end-of-file-fixer | ||
| exclude: '\.svg$|\.patch$' | ||
| - id: trailing-whitespace | ||
| exclude: '\.svg$|\.patch$' | ||
| - id: check-json | ||
| - id: check-yaml | ||
| args: [--allow-multiple-documents, --unsafe] | ||
| - id: check-toml | ||
|
|
||
| - repo: https://github.com/astral-sh/ruff-pre-commit | ||
| rev: v0.5.6 | ||
| hooks: | ||
| - id: ruff | ||
| args: ["--fix"] | ||
| - id: ruff-format |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.