80 lines
2.7 KiB
C++
80 lines
2.7 KiB
C++
/*
|
|
* Legal Notice
|
|
*
|
|
* This document and associated source code (the "Work") is a part of a
|
|
* benchmark specification maintained by the TPC.
|
|
*
|
|
* The TPC reserves all right, title, and interest to the Work as provided
|
|
* under U.S. and international laws, including without limitation all patent
|
|
* and trademark rights therein.
|
|
*
|
|
* No Warranty
|
|
*
|
|
* 1.1 TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE INFORMATION
|
|
* CONTAINED HEREIN IS PROVIDED "AS IS" AND WITH ALL FAULTS, AND THE
|
|
* AUTHORS AND DEVELOPERS OF THE WORK HEREBY DISCLAIM ALL OTHER
|
|
* WARRANTIES AND CONDITIONS, EITHER EXPRESS, IMPLIED OR STATUTORY,
|
|
* INCLUDING, BUT NOT LIMITED TO, ANY (IF ANY) IMPLIED WARRANTIES,
|
|
* DUTIES OR CONDITIONS OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR
|
|
* PURPOSE, OF ACCURACY OR COMPLETENESS OF RESPONSES, OF RESULTS, OF
|
|
* WORKMANLIKE EFFORT, OF LACK OF VIRUSES, AND OF LACK OF NEGLIGENCE.
|
|
* ALSO, THERE IS NO WARRANTY OR CONDITION OF TITLE, QUIET ENJOYMENT,
|
|
* QUIET POSSESSION, CORRESPONDENCE TO DESCRIPTION OR NON-INFRINGEMENT
|
|
* WITH REGARD TO THE WORK.
|
|
* 1.2 IN NO EVENT WILL ANY AUTHOR OR DEVELOPER OF THE WORK BE LIABLE TO
|
|
* ANY OTHER PARTY FOR ANY DAMAGES, INCLUDING BUT NOT LIMITED TO THE
|
|
* COST OF PROCURING SUBSTITUTE GOODS OR SERVICES, LOST PROFITS, LOSS
|
|
* OF USE, LOSS OF DATA, OR ANY INCIDENTAL, CONSEQUENTIAL, DIRECT,
|
|
* INDIRECT, OR SPECIAL DAMAGES WHETHER UNDER CONTRACT, TORT, WARRANTY,
|
|
* OR OTHERWISE, ARISING IN ANY WAY OUT OF THIS OR ANY OTHER AGREEMENT
|
|
* RELATING TO THE WORK, WHETHER OR NOT SUCH AUTHOR OR DEVELOPER HAD
|
|
* ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES.
|
|
*
|
|
* Contributors:
|
|
* Gradient Systems
|
|
*/
|
|
#include "w_reason.h"
|
|
|
|
#include "append_info.h"
|
|
#include "build_support.h"
|
|
#include "columns.h"
|
|
#include "config.h"
|
|
#include "genrand.h"
|
|
#include "nulls.h"
|
|
#include "porting.h"
|
|
#include "tables.h"
|
|
#include "tdefs.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
struct W_REASON_TBL g_w_reason;
|
|
|
|
/*
|
|
* mk_reason
|
|
*/
|
|
int mk_w_reason(void *info_arr, ds_key_t index) {
|
|
struct W_REASON_TBL *r;
|
|
tdef *pTdef = getSimpleTdefsByNumber(REASON);
|
|
|
|
r = &g_w_reason;
|
|
|
|
if (!InitConstants::mk_w_reason_init) {
|
|
memset(&g_w_reason, 0, sizeof(struct W_REASON_TBL));
|
|
InitConstants::mk_w_reason_init = 1;
|
|
}
|
|
|
|
nullSet(&pTdef->kNullBitMap, R_NULLS);
|
|
r->r_reason_sk = index;
|
|
mk_bkey(&r->r_reason_id[0], index, R_REASON_ID);
|
|
dist_member(&r->r_reason_description, "return_reasons", (int)index, 1);
|
|
|
|
void *info = append_info_get(info_arr, REASON);
|
|
append_row_start(info);
|
|
append_key(info, r->r_reason_sk);
|
|
append_varchar(info, r->r_reason_id);
|
|
append_varchar(info, r->r_reason_description);
|
|
append_row_end(info);
|
|
|
|
return 0;
|
|
}
|