-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Enforce case-insensitively unique feature view names #1835
Enforce case-insensitively unique feature view names #1835
Conversation
Signed-off-by: Cody Lin <[email protected]>
Hi @codyjlin. Thanks for your PR. I'm waiting for a feast-dev member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/ok-to-test |
@codyjlin: Cannot trigger testing until a trusted user reviews the PR and leaves an In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
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.
I think this is fine, but is going to be a breaking change in case anyway was relying on this behavior.
Any tests to update for this?
Signed-off-by: Cody Lin <[email protected]>
@achals Ah, didn't realize there were tests for this validation check. Updating the failed tests and modifying one to test the case-insensitive case. |
Codecov Report
@@ Coverage Diff @@
## master #1835 +/- ##
==========================================
+ Coverage 84.32% 84.69% +0.37%
==========================================
Files 93 90 -3
Lines 6869 7003 +134
==========================================
+ Hits 5792 5931 +139
+ Misses 1077 1072 -5
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
/retest |
1 similar comment
/retest |
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.
/lgtm
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: achals, codyjlin The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/kind bug |
Signed-off-by: Cody Lin [email protected]
What this PR does / why we need it:
CockroachDB's table names and the materialization jobs using dataflow need feature view names to be lowercase. (CRDB is an online store we're trying to use.) We can transform the names downstream / on our end, but we would like the collision check to happen at
feast apply
time.Which issue(s) this PR fixes:
It's such a small change that no issue created.
Does this PR introduce a user-facing change?: