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


##########
superset-frontend/src/dataMask/reducer.ts:
##########
@@ -138,8 +138,20 @@ function fillNativeFilters(
     //  (2) loaded has a value but no extraFormData and the default does โ€” the
     //      "value present in UI but not applied to charts" gap-window case 
where
     //      a permalink was captured before FilterValue produced extraFormData.
+    // A select filter's explicit match-nothing predicate is a complete clear,
+    // not an incomplete permalink captured while the filter was initializing.
+    const isExplicitSelectClear =
+      filter.filterType === 'filter_select' &&
+      !loadedHasValue &&
+      loaded?.extraFormData?.adhoc_filters?.some(
+        predicate =>
+          predicate.expressionType === 'SQL' &&
+          predicate.clause === 'WHERE' &&
+          predicate.sqlExpression === '1 = 0',
+      );

Review Comment:
   **Suggestion:** A malformed permalink can store a non-array `adhoc_filters` 
value or null entry; this call then throws during dashboard hydration instead 
of restoring the default. [type error]
   
   **Assessment:** ๐ŸŸ  `Major` ยท ๐Ÿ” `Occurrence: Rarely`
   
   [![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=69b8a5c6730f43ed8ef641762b75fbf9&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=69b8a5c6730f43ed8ef641762b75fbf9&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-frontend/src/dataMask/reducer.ts
   **Line:** 146:151
   **Comment:**
        *Type Error: A malformed permalink can store a non-array 
`adhoc_filters` value or null entry; this call then throws during dashboard 
hydration instead of restoring the default.
   
   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%2F44096&comment_hash=31b3dab25bb90410158e4c46052f0e77d16bb2048ba182f218b1c5eb475ed4a7&reaction=like'>๐Ÿ‘</a>
 | <a 
href='https://app.codeant.ai/feedback?pr_url=https%3A%2F%2Fgithub.com%2Fapache%2Fsuperset%2Fpull%2F44096&comment_hash=31b3dab25bb90410158e4c46052f0e77d16bb2048ba182f218b1c5eb475ed4a7&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