(self)
| 131 | return self._limit |
| 132 | |
| 133 | def is_select(self) -> bool: |
| 134 | # make sure we strip comments; prevents a bug with coments in the CTE |
| 135 | parsed = sqlparse.parse(self.strip_comments()) |
| 136 | return parsed[0].get_type() == "SELECT" |
| 137 | |
| 138 | def is_valid_ctas(self) -> bool: |
| 139 | parsed = sqlparse.parse(self.strip_comments()) |