-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror_msg.h
More file actions
102 lines (96 loc) · 3.5 KB
/
error_msg.h
File metadata and controls
102 lines (96 loc) · 3.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/*
* 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
*/
#define QERR_OK 0
#define QERR_NO_FILE -1
#define QERR_LINE_TOO_LONG -2
#define QERR_NO_MEMORY -3
#define QERR_SYNTAX -4
#define QERR_RANGE_ERROR -5
#define QERR_NON_UNIQUE -6
#define QERR_BAD_NAME -7
#define QERR_DEFINE_OVERFLOW -8
#define QERR_INVALID_TAG -9
#define QERR_READ_FAILED -10
#define QERR_TEMPLATE_OVERFLOW -11
#define QERR_ONE_WORKLOAD -12
#define QERR_CLASS_REDEFINE -13
#define QERR_DUP_QUERY -14
#define QERR_OPEN_FAILED -15
#define QERR_NOT_IMPLEMENTED -16
#define QERR_STR_TRUNCATED -17
#define QERR_BAD_STRING -18
#define QERR_WRITE_FAILED -19
#define QERR_NO_TYPE -20
#define QERR_NO_WEIGHT -21
#define QERR_NO_LIMIT -22
#define QERR_BAD_PERCENT -23
#define QERR_ROWCOUNT_NAME -24
#define QERR_NO_EXPR -25
#define QERR_NO_INIT -26
#define QERR_NO_NORMAL_RANGE -27
#define QERR_UNBALANCED -28
#define QERR_INCLUDE_OVERFLOW -29
#define QERR_BAD_PARAMS -30
#define DBGEN_ERROR_HIERACHY_ORDER -31
#define QERR_NAMES_EARLY -32
#define QERR_ARG_OVERFLOW -33
#define QERR_INVALID_ARG -34
#define QERR_RANGE_LIST -35
#define QERR_BAD_SCALE -36
#define QERR_BAD_PARAM -37
#define QERR_BAD_JOIN -38
#define QERR_TABLE_NOP -39
#define QERR_TABLE_CHILD -40
#define QERR_CMDLINE_TOO_LONG -41
#define QERR_NO_QUERYLIST -42
#define QERR_QUERY_RANGE -43
#define QERR_MODIFIED_PARAM -44
#define QERR_RANGE_OVERRUN -45
#define QERR_QUALIFICATION_SCALE -46
#define QERR_TABLE_UPDATE -47
#define MAX_ERROR 47
typedef struct ERR_MSG_T {
int flags;
char *prompt;
} err_msg_t;
/* Flag determine formating */
#define EFLG_NO_ARG 0x0000
#define EFLG_STR_ARG 0x0001
#define EFLG_ARG_MASK 0x0001
#define EFLG_SYSTEM 0x0002
int ReportError(int nError, char *arg, int bExit);
int ReportErrorNoLine(int nError, char *arg, int bExit);
void SetErrorGlobals(char *szFileName, int *pnLineNumber);