-
-
Notifications
You must be signed in to change notification settings - Fork 93
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
fix: Validation error when @@unique attribute is defined in the different model of the relation field #1430
Conversation
…rent model of the relation field
WalkthroughWalkthroughThe recent updates involve enhancing the Changes
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
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.
Actionable comments posted: 0
Review Details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (2)
- packages/schema/src/language-server/validator/datamodel-validator.ts (2 hunks)
- packages/schema/tests/schema/validation/datamodel-validation.test.ts (2 hunks)
Additional comments not posted (2)
packages/schema/src/language-server/validator/datamodel-validator.ts (1)
Line range hint
364-380
: Ensure proper handling of unique constraints in inherited models.Verification successful
The verification process has confirmed that the
getUniqueFields
function is indeed utilized within theDataModelValidator
class to handle unique constraints, particularly in scenarios involving inherited models. This function is imported fromutils.ts
and used indatamodel-validator.ts
to gather unique fields from both thecontainingModel
andcontextModel
, which aligns with the intended logic described in the review comment.Here are the specific usages identified:
- The function is defined in
packages/schema/src/language-server/utils.ts
.- It is imported and used in
packages/schema/src/language-server/validator/datamodel-validator.ts
to get unique fields from models, supporting the validation logic for unique constraints in inherited models.This confirms that the implementation handles unique constraints as expected when models are inherited.
Scripts Executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify that the unique constraints are properly handled when models are inherited. # Test: Search for the usage of `getUniqueFields` function. Expect: Proper handling of unique constraints in inherited models. rg --type typescript $'getUniqueFields'Length of output: 73
Script:
#!/bin/bash # Description: Verify that the unique constraints are properly handled when models are inherited. # Test: Search for the usage of `getUniqueFields` function. Expect: Proper handling of unique constraints in inherited models. rg --type ts 'getUniqueFields'Length of output: 520
packages/schema/tests/schema/validation/datamodel-validation.test.ts (1)
524-524
: Update error message to include model context for clarity.
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.
Actionable comments posted: 0
Review Details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (2)
- packages/schema/src/language-server/validator/datamodel-validator.ts (2 hunks)
- packages/schema/tests/schema/validation/datamodel-validation.test.ts (2 hunks)
Files skipped from review as they are similar to previous changes (2)
- packages/schema/src/language-server/validator/datamodel-validator.ts
- packages/schema/tests/schema/validation/datamodel-validation.test.ts
No description provided.