1/*
2 * Legal Notice
3 *
4 * This document and associated source code (the "Work") is a part of a
5 * benchmark specification maintained by the TPC.
6 *
7 * The TPC reserves all right, title, and interest to the Work as provided
8 * under U.S. and international laws, including without limitation all patent
9 * and trademark rights therein.
10 *
11 * No Warranty
12 *
13 * 1.1 TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE INFORMATION
14 * CONTAINED HEREIN IS PROVIDED "AS IS" AND WITH ALL FAULTS, AND THE
15 * AUTHORS AND DEVELOPERS OF THE WORK HEREBY DISCLAIM ALL OTHER
16 * WARRANTIES AND CONDITIONS, EITHER EXPRESS, IMPLIED OR STATUTORY,
17 * INCLUDING, BUT NOT LIMITED TO, ANY (IF ANY) IMPLIED WARRANTIES,
18 * DUTIES OR CONDITIONS OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR
19 * PURPOSE, OF ACCURACY OR COMPLETENESS OF RESPONSES, OF RESULTS, OF
20 * WORKMANLIKE EFFORT, OF LACK OF VIRUSES, AND OF LACK OF NEGLIGENCE.
21 * ALSO, THERE IS NO WARRANTY OR CONDITION OF TITLE, QUIET ENJOYMENT,
22 * QUIET POSSESSION, CORRESPONDENCE TO DESCRIPTION OR NON-INFRINGEMENT
23 * WITH REGARD TO THE WORK.
24 * 1.2 IN NO EVENT WILL ANY AUTHOR OR DEVELOPER OF THE WORK BE LIABLE TO
25 * ANY OTHER PARTY FOR ANY DAMAGES, INCLUDING BUT NOT LIMITED TO THE
26 * COST OF PROCURING SUBSTITUTE GOODS OR SERVICES, LOST PROFITS, LOSS
27 * OF USE, LOSS OF DATA, OR ANY INCIDENTAL, CONSEQUENTIAL, DIRECT,
28 * INDIRECT, OR SPECIAL DAMAGES WHETHER UNDER CONTRACT, TORT, WARRANTY,
29 * OR OTHERWISE, ARISING IN ANY WAY OUT OF THIS OR ANY OTHER AGREEMENT
30 * RELATING TO THE WORK, WHETHER OR NOT SUCH AUTHOR OR DEVELOPER HAD
31 * ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES.
32 *
33 * Contributors:
34 * Gradient Systems
35 */
36#ifndef W_ITEM_H
37#define W_ITEM_H
38#include "constants.h"
39
40#define I_PROMO_PERCENTAGE 20 /* percent of items that have associated promotions */
41#define MIN_ITEM_MARKDOWN_PCT "0.30"
42#define MAX_ITEM_MARKDOWN_PCT "0.90"
43
44/*
45 * ITEM table structure
46 */
47struct W_ITEM_TBL {
48 ds_key_t i_item_sk;
49 char i_item_id[RS_BKEY + 1];
50 ds_key_t i_rec_start_date_id;
51 ds_key_t i_rec_end_date_id;
52 char i_item_desc[RS_I_ITEM_DESC + 1];
53 decimal_t i_current_price; /* list price */
54 decimal_t i_wholesale_cost;
55 ds_key_t i_brand_id;
56 char i_brand[RS_I_BRAND + 1];
57 ds_key_t i_class_id;
58 char *i_class;
59 ds_key_t i_category_id;
60 char *i_category;
61 ds_key_t i_manufact_id;
62 char i_manufact[RS_I_MANUFACT + 1];
63 char *i_size;
64 char i_formulation[RS_I_FORMULATION + 1];
65 char *i_color;
66 char *i_units;
67 char *i_container;
68 ds_key_t i_manager_id;
69 char i_product_name[RS_I_PRODUCT_NAME + 1];
70 ds_key_t i_promo_sk;
71};
72
73int mk_w_item(void *info_arr, ds_key_t kIndex);
74int vld_w_item(int nTable, ds_key_t kRow, int *Permutation);
75#endif
76