| 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 "w_customer_address.h" |
| 40 | #include "date.h" |
| 41 | #include "decimal.h" |
| 42 | #include "genrand.h" |
| 43 | #include "columns.h" |
| 44 | #include "build_support.h" |
| 45 | #include "tables.h" |
| 46 | #include "nulls.h" |
| 47 | #include "tdefs.h" |
| 48 | |
| 49 | #include "append_info.h" |
| 50 | |
| 51 | struct W_CUSTOMER_ADDRESS_TBL g_w_customer_address; |
| 52 | |
| 53 | /* |
| 54 | * mk_customer_address |
| 55 | */ |
| 56 | int mk_w_customer_address(void *info_arr, ds_key_t index) { |
| 57 | |
| 58 | /* begin locals declarations */ |
| 59 | struct W_CUSTOMER_ADDRESS_TBL *r; |
| 60 | tdef *pTdef = getSimpleTdefsByNumber(CUSTOMER_ADDRESS); |
| 61 | |
| 62 | r = &g_w_customer_address; |
| 63 | |
| 64 | nullSet(&pTdef->kNullBitMap, CA_NULLS); |
| 65 | r->ca_addr_sk = index; |
| 66 | mk_bkey(&r->ca_addr_id[0], index, CA_ADDRESS_ID); |
| 67 | pick_distribution(&r->ca_location_type, "location_type" , 1, 1, CA_LOCATION_TYPE); |
| 68 | mk_address(&r->ca_address, CA_ADDRESS); |
| 69 | |
| 70 | void *info = append_info_get(info_arr, CUSTOMER_ADDRESS); |
| 71 | append_row_start(info); |
| 72 | |
| 73 | char szTemp[128]; |
| 74 | |
| 75 | append_key(info, r->ca_addr_sk); |
| 76 | append_varchar(info, r->ca_addr_id); |
| 77 | append_integer(info, r->ca_address.street_num); |
| 78 | if (r->ca_address.street_name2) { |
| 79 | sprintf(szTemp, "%s %s" , r->ca_address.street_name1, r->ca_address.street_name2); |
| 80 | append_varchar(info, szTemp); |
| 81 | } else |
| 82 | append_varchar(info, r->ca_address.street_name1); |
| 83 | append_varchar(info, r->ca_address.street_type); |
| 84 | append_varchar(info, &r->ca_address.suite_num[0]); |
| 85 | append_varchar(info, r->ca_address.city); |
| 86 | append_varchar(info, r->ca_address.county); |
| 87 | append_varchar(info, r->ca_address.state); |
| 88 | sprintf(szTemp, "%05d" , r->ca_address.zip); |
| 89 | append_varchar(info, szTemp); |
| 90 | append_varchar(info, &r->ca_address.country[0]); |
| 91 | append_integer(info, r->ca_address.gmt_offset); |
| 92 | append_varchar(info, r->ca_location_type); |
| 93 | |
| 94 | append_row_end(info); |
| 95 | |
| 96 | return 0; |
| 97 | } |
| 98 | |