mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
Mariadb fix: blob is a reserved keyword
This commit is contained in:
@@ -23,7 +23,7 @@ public class OtoLevelBLazy {
|
||||
private OtoLevelALazy a;
|
||||
|
||||
@Lob
|
||||
private String blob;
|
||||
private String blb;
|
||||
|
||||
public OtoLevelBLazy(String name) {
|
||||
this.name = name;
|
||||
@@ -62,15 +62,15 @@ public class OtoLevelBLazy {
|
||||
}
|
||||
|
||||
protected void recalc() {
|
||||
this.getBlob();
|
||||
this.getBlb();
|
||||
}
|
||||
|
||||
public String getBlob() {
|
||||
return blob;
|
||||
public String getBlb() {
|
||||
return blb;
|
||||
}
|
||||
|
||||
public void setBlob(String blob) {
|
||||
this.blob = blob;
|
||||
public void setBlb(String blb) {
|
||||
this.blb = blb;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user