Yugabyte platform support - Automatic detection and DDL support

- Automatic detection similar to Cockroach
- DDL very similar to Postgres but no CREATE TABLE LIKE support (for history DDL)
This commit is contained in:
Rob Bygrave
2022-01-28 17:04:19 +13:00
parent 425124d8f7
commit 64605b5090
12 changed files with 98 additions and 33 deletions
@@ -0,0 +1,12 @@
package io.ebean.config.dbplatform.yugabyte;
import io.ebean.annotation.Platform;
import io.ebean.config.dbplatform.postgres.PostgresPlatform;
public class YugabytePlaform extends PostgresPlatform {
public YugabytePlaform() {
super();
this.platform = Platform.YUGABYTE;
}
}