(self, engine_type: str = "postgres")
| 235 | return (string, combined_args) |
| 236 | |
| 237 | def freeze(self, engine_type: str = "postgres"): |
| 238 | self._frozen_compiled_strings = self.compile_string( |
| 239 | engine_type=engine_type |
| 240 | ) |
| 241 | |
| 242 | ########################################################################### |
| 243 |
nothing calls this directly
no test coverage detected