represent a grouping of a named FROM clause .. versionadded:: 2.0
| 3076 | |
| 3077 | |
| 3078 | class NamedFromGrouping(FromGrouping, NamedFromClause): |
| 3079 | """represent a grouping of a named FROM clause |
| 3080 | |
| 3081 | .. versionadded:: 2.0 |
| 3082 | |
| 3083 | """ |
| 3084 | |
| 3085 | inherit_cache = True |
| 3086 | |
| 3087 | if TYPE_CHECKING: |
| 3088 | |
| 3089 | def self_group( |
| 3090 | self, against: Optional[OperatorType] = None |
| 3091 | ) -> Self: ... |
| 3092 | |
| 3093 | |
| 3094 | class TableClause(roles.DMLTableRole, Immutable, NamedFromClause): |