/* // $Id: //guest/julian_hyde/mondrian/src/main/mondrian/rolap/sql/SqlTable.java#1 $ // This software is subject to the terms of the Common Public License // Agreement, available at the following URL: // http://www.opensource.org/licenses/cpl.html. // (C) Copyright 2002 Kana Software, Inc. and others. // All Rights Reserved. // You must accept the terms of that agreement to use this software. // // jhyde, Mar 21, 2002 */ package mondrian.rolap.sql; class SqlTable extends SqlRelation { String name; SqlTable(SqlQuery query) { super(query); } public String toString() { return query.quoteIdentifier(name) + " as " + query.quoteIdentifier(alias); } SqlRelation find(String alias) { if (this.alias.equals(alias)) { return this; } else { return null; } } } // End SqlTable.java
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 1576 | Julian Hyde |
mondrian: fix dataset (add column customer.ordinal); create dataset for oracle; get queries working on oracle; get format strings working; refactor out new packages mondrian.rolap.agg and mondrian.rolap.sql. |