Changes between Initial Version and Version 1 of Ticket #36189, comment 6
- Timestamp:
- Feb 18, 2025, 12:12:37 PM (4 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #36189, comment 6
initial v1 1 1 > I agree with you. Another case I can think of (although I haven't tested it yet, so please correct me if I'm wrong, as this is based on my limited experience) is when a user explicitly provides a value for the primary key while creating an object, instead of relying on the nextval from the sequence. 2 2 3 Right this is what is causing many test failures as described in comment:3 and why the solution is not appropriate as don't use `GENERATED ALWAYS` which would disallow explicit assignment of primary key values.3 Right this is what is causing many test failures as described in comment:3 and why the solution is not appropriate as we don't use `GENERATED ALWAYS` which would disallow explicit assignment of primary key values. 4 4 5 5 > Another case that shows sequence is tied to transactions: