kacpermuda commented on code in PR #66849:
URL: https://github.com/apache/airflow/pull/66849#discussion_r3235529017


##########
providers/common/sql/src/airflow/providers/common/sql/operators/sql.py:
##########
@@ -127,6 +130,46 @@ def default_output_processor(results: list[Any], 
descriptions: list[Sequence[Seq
     return results
 
 
+@dataclass
+class SQLCheckResult:
+    """Record of a single SQL check result."""
+
+    name: str
+    """Unique name identifying this check."""
+
+    check_type: str
+    """Classification of the check, e.g. ``"not_null"``, ``"row_count"``, 
``"unique"``."""

Review Comment:
   No, I think I copied it from OL spec tbh



-- 
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]

Reply via email to