(self)
| 906 | |
| 907 | @property |
| 908 | def window_functions(self): |
| 909 | return only_if( |
| 910 | [ |
| 911 | "postgresql>=8.4", |
| 912 | "mssql", |
| 913 | "oracle", |
| 914 | "sqlite>=3.25.0", |
| 915 | "mysql>=8", |
| 916 | "mariadb>=10.2", |
| 917 | ], |
| 918 | "Backend does not support window functions", |
| 919 | ) |
| 920 | |
| 921 | @property |
| 922 | def two_phase_transactions(self): |