| 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 | #include "config.h" |
| 37 | #include "porting.h" |
| 38 | #include <stdio.h> |
| 39 | #include "genrand.h" |
| 40 | #include "w_income_band.h" |
| 41 | #include "columns.h" |
| 42 | #include "build_support.h" |
| 43 | #include "tables.h" |
| 44 | #include "nulls.h" |
| 45 | #include "tdefs.h" |
| 46 | |
| 47 | #include "append_info.h" |
| 48 | |
| 49 | struct W_INCOME_BAND_TBL g_w_income_band; |
| 50 | |
| 51 | /* |
| 52 | * mk_income_band |
| 53 | */ |
| 54 | int mk_w_income_band(void *info_arr, ds_key_t index) { |
| 55 | struct W_INCOME_BAND_TBL *r; |
| 56 | static int bInit = 0; |
| 57 | tdef *pTdef = getSimpleTdefsByNumber(INCOME_BAND); |
| 58 | |
| 59 | r = &g_w_income_band; |
| 60 | |
| 61 | if (!bInit) { |
| 62 | /* Make exceptions to the 1-rng-call-per-row rule */ |
| 63 | bInit = 1; |
| 64 | } |
| 65 | |
| 66 | nullSet(&pTdef->kNullBitMap, IB_NULLS); |
| 67 | r->ib_income_band_id = (long)index; |
| 68 | dist_member(&r->ib_lower_bound, "income_band" , (long)index, 1); |
| 69 | dist_member(&r->ib_upper_bound, "income_band" , (long)index, 2); |
| 70 | |
| 71 | void *info = append_info_get(info_arr, INCOME_BAND); |
| 72 | append_row_start(info); |
| 73 | append_integer(info, r->ib_income_band_id); |
| 74 | append_integer(info, r->ib_lower_bound); |
| 75 | append_integer(info, r->ib_upper_bound); |
| 76 | append_row_end(info); |
| 77 | |
| 78 | return 0; |
| 79 | } |
| 80 | |