001package io.ebean.config.dbplatform.postgres;
002
003import io.ebean.config.dbplatform.IdType;
004
005/**
006 * Postgres v8.3 specific platform.
007 * <p>
008 * No support for getGeneratedKeys.
009 * </p>
010 */
011public class Postgres8Platform extends PostgresPlatform {
012
013  public Postgres8Platform() {
014    super();
015    this.dbIdentity.setSupportsGetGeneratedKeys(false);
016    this.dbIdentity.setIdType(IdType.SEQUENCE);
017    this.dbIdentity.setSupportsSequence(true);
018    this.dbIdentity.setSupportsIdentity(true);
019    this.columnAliasPrefix = "as c";
020  }
021
022}