codeant-ai-for-open-source[bot] commented on code in PR #44184:
URL: https://github.com/apache/superset/pull/44184#discussion_r4032793432


##########
superset/commands/dataset/update.py:
##########
@@ -151,6 +152,13 @@ def _validate_dataset_source(self, exceptions: 
list[ValidationError]) -> None:
             table,
             self._model_id,
         ):
+            # Same hidden-twin guidance as the create path: when the blocking
+            # row is a SOFT-DELETED dataset, raise the targeted 422 naming
+            # the twin's uuid and the restore pointer instead of the opaque
+            # "already exists" (the twin is invisible in the caller's list).
+            soft_twin: SqlaTable | None
+            if soft_twin := DatasetDAO.find_soft_deleted_logical_duplicate(db, 
table):
+                raise DatasetSoftDeletedTwinExistsError(str(soft_twin.uuid))

Review Comment:
   **Suggestion:** `update_dataset_metric` does not catch this command 
exception, so a soft-deleted collision escapes as an unexpected MCP failure 
instead of the structured validation response used previously.
   
   **Assessment:** ๐ŸŸ  `Major` ยท ๐Ÿ” `Occurrence: Sometimes` ยท ๐Ÿท๏ธ `Api mismatch`
   
   [![Use CodeAnt 
Skill](https://new-codeant-butcket.s3.us-west-1.amazonaws.com/badges/use-codeant-skill-flat-v2.svg)](https://docs.codeant.ai/cli/resolve-pr-comments-skill)
 [![Fix in 
Cursor](https://new-codeant-butcket.s3.us-west-1.amazonaws.com/badges/fix-in-cursor-flat.svg)](https://app.codeant.ai/fix-in-ide?tool=cursor&prompt_id=9307e51c824a4242baebc5d7638d4dee&service=github&base_url=https%3A%2F%2Fgithub.com&org=apache&repo=apache%2Fsuperset)
 [![Fix in VSCode 
Claude](https://new-codeant-butcket.s3.us-west-1.amazonaws.com/badges/fix-in-vscode-claude-flat.svg)](https://app.codeant.ai/fix-in-ide?tool=vscode-claude&prompt_id=9307e51c824a4242baebc5d7638d4dee&service=github&base_url=https%3A%2F%2Fgithub.com&org=apache&repo=apache%2Fsuperset)
   <details>
   <summary><b>Prompt for AI Agent ๐Ÿค– </b></summary>
   
   ```mdx
   This is a comment left during a code review.
   
   **Path:** superset/commands/dataset/update.py
   **Line:** 160:161
   **Comment:**
        *Api Mismatch: `update_dataset_metric` does not catch this command 
exception, so a soft-deleted collision escapes as an unexpected MCP failure 
instead of the structured validation response used previously.
   
   Validate the correctness of the flagged issue. If correct, How can I resolve 
this? If you propose a fix, implement it and please make it concise.
   Once fix is implemented, also check other comments on the same PR, and ask 
user if the user wants to fix the rest of the comments as well. if said yes, 
then fetch all the comments validate the correctness and implement a minimal fix
   ```
   </details>
   <a 
href='https://app.codeant.ai/feedback?pr_url=https%3A%2F%2Fgithub.com%2Fapache%2Fsuperset%2Fpull%2F44184&comment_hash=6cf6f850a4288db57623c41fbc47d8310f49e7983a97ad859272091b23fa650f&reaction=like'>๐Ÿ‘</a>
 | <a 
href='https://app.codeant.ai/feedback?pr_url=https%3A%2F%2Fgithub.com%2Fapache%2Fsuperset%2Fpull%2F44184&comment_hash=6cf6f850a4288db57623c41fbc47d8310f49e7983a97ad859272091b23fa650f&reaction=dislike'>๐Ÿ‘Ž</a>



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to