001package io.ebean.config.dbplatform.oracle; 002 003/** 004 * Oracle 12 platform using column alias. 005 */ 006public class Oracle12Platform extends OraclePlatform { 007 008 public Oracle12Platform() { 009 super(); 010 //this.platform = Platform.ORACLE12; 011 this.columnAliasPrefix = "c"; 012 } 013}