All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.calcite.test.schemata.tpch.TpchSchema Maven / Gradle / Ivy

The newest version!
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to you under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.apache.calcite.test.schemata.tpch;

/**
 * TPC-H table schema.
 */
public class TpchSchema {
  public final Customer[] customer = { c(1), c(2) };
  public final LineItem[] lineitem = { li(1), li(2) };
  public final Part[] part = { p(1), p(2) };
  public final PartSupp[] partsupp = { ps(1, 250), ps(2, 100) };

  /**
   * Customer in TPC-H.
   */
  public static class Customer {
    public final int custId;
    // CHECKSTYLE: IGNORE 1
    public final String nation_name;

    public Customer(int custId) {
      this.custId = custId;
      this.nation_name = "USA";
    }

    @Override public String toString() {
      return "Customer [custId=" + custId + "]";
    }
  }

  /**
   * Line Item in TPC-H.
   */
  public static class LineItem {
    public final int custId;

    public LineItem(int custId) {
      this.custId = custId;
    }

    @Override public String toString() {
      return "LineItem [custId=" + custId + "]";
    }
  }

  /**
   * Part in TPC-H.
   */
  public static class Part {
    public final int pPartkey;
    // CHECKSTYLE: IGNORE 1
    public final String p_brand;

    public Part(int pPartkey) {
      this.pPartkey = pPartkey;
      this.p_brand = "brand" + pPartkey;
    }

    @Override public String toString() {
      return "Part [pPartkey=" + pPartkey + "]";
    }
  }

  /**
   * Part supplier in TPC-H.
   */
  public static class PartSupp {
    public final int psPartkey;
    public final int psSupplyCost;

    public PartSupp(int psPartkey, int psSupplyCost) {
      this.psPartkey = psPartkey;
      this.psSupplyCost = psSupplyCost;
    }

    @Override public String toString() {
      return "PartSupp [pSupplyCost=" + psPartkey + ", pSupplyCost="
        + psSupplyCost + "]";
    }
  }

  public static Customer c(int custId) {
    return new Customer(custId);
  }

  public static LineItem li(int custId) {
    return new LineItem(custId);
  }

  public static PartSupp ps(int pPartkey, int pSupplyCost) {
    return new PartSupp(pPartkey, pSupplyCost);
  }

  public static Part p(int pPartkey) {
    return new Part(pPartkey);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy