oracle test fix up
This commit is contained in:
parent
1b86b2228c
commit
a9f51a3eae
|
@ -22,6 +22,7 @@ import org.junit.jupiter.api.AfterEach;
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
import jakarta.persistence.Basic;
|
import jakarta.persistence.Basic;
|
||||||
|
import jakarta.persistence.Column;
|
||||||
import jakarta.persistence.Entity;
|
import jakarta.persistence.Entity;
|
||||||
import jakarta.persistence.Id;
|
import jakarta.persistence.Id;
|
||||||
import jakarta.persistence.Inheritance;
|
import jakarta.persistence.Inheritance;
|
||||||
|
@ -114,7 +115,9 @@ public class BatchedMultiTableDynamicStatementTests {
|
||||||
public static class Payment {
|
public static class Payment {
|
||||||
@Id
|
@Id
|
||||||
private Integer id;
|
private Integer id;
|
||||||
|
@Column( name = "amt")
|
||||||
private double amount;
|
private double amount;
|
||||||
|
@Column( name = "the_comment")
|
||||||
private String comment;
|
private String comment;
|
||||||
|
|
||||||
public Integer getId() {
|
public Integer getId() {
|
||||||
|
@ -151,6 +154,7 @@ public class BatchedMultiTableDynamicStatementTests {
|
||||||
@Basic(optional = false)
|
@Basic(optional = false)
|
||||||
private String route;
|
private String route;
|
||||||
@Basic(optional = false)
|
@Basic(optional = false)
|
||||||
|
@Column( name = "acct" )
|
||||||
private String account;
|
private String account;
|
||||||
private String memo;
|
private String memo;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue