test dialect executes a Sequence, returns nextval, whether or not "optional" is set
(self, connection)
| 171 | self._assert_seq_result(connection.execute(s)) |
| 172 | |
| 173 | def test_scalar_optional(self, connection): |
| 174 | """test dialect executes a Sequence, returns nextval, whether |
| 175 | or not "optional" is set""" |
| 176 | |
| 177 | s = normalize_sequence(config, Sequence("my_sequence", optional=True)) |
| 178 | self._assert_seq_result(connection.scalar(s)) |
| 179 | |
| 180 | def test_execute_next_value(self, connection): |
| 181 | """test func.next_value().execute()/.scalar() works |
nothing calls this directly
no test coverage detected