blob: 7809742fe79ff40c065760c95dcca36261d56355 (
plain)
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
|
/*-------------------------------------------------------------------------
*
* assert.h
*
*
* Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 2010-2012 Postgres-XC Development Group
*
* $PostgreSQL$
*
*-------------------------------------------------------------------------
*/
#ifndef GTM_ASSERT_H
#define GTM_ASSERT_H
#include "c.h"
extern bool assert_enabled;
void ExceptionalCondition(const char *conditionName,
const char *errorType,
const char *fileName,
int lineNumber);
#endif
|