(self, length=IDENT_LENGTH, positional=False)
| 56 | ) |
| 57 | |
| 58 | def _length_fixture(self, length=IDENT_LENGTH, positional=False): |
| 59 | dialect = default.DefaultDialect() |
| 60 | dialect.max_identifier_length = ( |
| 61 | dialect._user_defined_max_identifier_length |
| 62 | ) = length |
| 63 | if positional: |
| 64 | dialect.paramstyle = "format" |
| 65 | dialect.positional = True |
| 66 | return dialect |
| 67 | |
| 68 | def _engine_fixture(self, length=IDENT_LENGTH): |
| 69 | eng = engines.testing_engine() |
no outgoing calls
no test coverage detected