Caleb Cushing
Caleb Cushing
yeah, ok right now I'm not sure this has anything to do with @Embedded, this also fails ```java @CreatedDate private OffsetDateTime created; @Column(name = "created_on", columnDefinition = "timestamp with time...
[java-sample.tar.gz](https://github.com/spring-projects/spring-data-jpa/files/9574212/java-sample.tar.gz) btw, sorry for the comment spam, work doesn't let us edit them. I'm gonna go back to bed now. I'll see if I missed something in the morning, but...
That last tar I uploaded should work. Are you having problems with it? A couple of things are hard to check due to corporate proxy stuff.
not to be a nag, but any chance you've had to take a look at that jar?
@schauder sorry, I'm a jerk, I know, I'm departing this company soon though and would ideally like to have this wrapped up.
Huh, some of that is weird. However I was teasing a project apart that was an active development so it's entirely possible some of those things got missed... Unfortunately issue...
Interesting... I wonder what I've changed... sorry it's still not a repo in the test logs ``` DEBUG - insert into exceptions (created_on, last_modified_on, version, business_division_id, id) values (?, ?,...
adding `@Transactional` to the test show's that the fetch of the offset inside the test is working ```kt import com.capitalone.e1.domain.core.exception.ExceptionAggregate import com.capitalone.e1.domain.core.exception.ExceptionRepository import com.capitalone.e1.infrastructure.tx.TransactionScopeTimeConfiguration import org.assertj.core.api.Assertions.assertThat import org.assertj.core.api.Assertions.tuple import org.junit.jupiter.api.Test...
``` DEBUG - create table exceptions (id uuid not null, created_on timestamp, last_modified_on timestamp, version integer not null, business_division_id varchar(255), primary key (id)) : org.hibernate.SQL ```