98 lines
3.1 KiB
C++
98 lines
3.1 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_timetbl.h"
|
|
|
|
#include "append_info.h"
|
|
#include "build_support.h"
|
|
#include "config.h"
|
|
#include "constants.h"
|
|
#include "date.h"
|
|
#include "decimal.h"
|
|
#include "genrand.h"
|
|
#include "misc.h"
|
|
#include "nulls.h"
|
|
#include "porting.h"
|
|
#include "tables.h"
|
|
#include "tdefs.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
struct W_TIME_TBL g_w_time;
|
|
|
|
/*
|
|
* mk_time
|
|
*/
|
|
int mk_w_time(void *info_arr, ds_key_t index) {
|
|
|
|
/* begin locals declarations */
|
|
int nTemp;
|
|
struct W_TIME_TBL *r;
|
|
tdef *pT = getSimpleTdefsByNumber(TIME);
|
|
|
|
r = &g_w_time;
|
|
|
|
nullSet(&pT->kNullBitMap, T_NULLS);
|
|
r->t_time_sk = index - 1;
|
|
mk_bkey(&r->t_time_id[0], index, T_TIME_ID);
|
|
r->t_time = (long)index - 1;
|
|
nTemp = (long)index - 1;
|
|
r->t_second = nTemp % 60;
|
|
nTemp /= 60;
|
|
r->t_minute = nTemp % 60;
|
|
nTemp /= 60;
|
|
r->t_hour = nTemp % 24;
|
|
dist_member(&r->t_am_pm, "hours", r->t_hour + 1, 2);
|
|
dist_member(&r->t_shift, "hours", r->t_hour + 1, 3);
|
|
dist_member(&r->t_sub_shift, "hours", r->t_hour + 1, 4);
|
|
dist_member(&r->t_meal_time, "hours", r->t_hour + 1, 5);
|
|
|
|
void *info = append_info_get(info_arr, TIME);
|
|
append_row_start(info);
|
|
append_key(info, r->t_time_sk);
|
|
append_varchar(info, r->t_time_id);
|
|
append_integer(info, r->t_time);
|
|
append_integer(info, r->t_hour);
|
|
append_integer(info, r->t_minute);
|
|
append_integer(info, r->t_second);
|
|
append_varchar(info, r->t_am_pm);
|
|
append_varchar(info, r->t_shift);
|
|
append_varchar(info, r->t_sub_shift);
|
|
append_varchar(info, r->t_meal_time);
|
|
append_row_end(info);
|
|
|
|
return 0;
|
|
}
|