test can use next_value() in select column expr
(self, connection)
| 192 | self._assert_seq_result(connection.scalar(s.next_value())) |
| 193 | |
| 194 | def test_func_embedded_select(self, connection): |
| 195 | """test can use next_value() in select column expr""" |
| 196 | |
| 197 | s = normalize_sequence(config, Sequence("my_sequence")) |
| 198 | self._assert_seq_result(connection.scalar(select(s.next_value()))) |
| 199 | |
| 200 | @testing.requires.sequences_in_other_clauses |
| 201 | @testing.provide_metadata |
nothing calls this directly
no test coverage detected