We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98981a9 commit 9b3e2ddCopy full SHA for 9b3e2dd
src/backend/lib/dllist.c
@@ -9,15 +9,24 @@
9
*
10
11
* IDENTIFICATION
12
- * $Header: /cvsroot/pgsql/src/backend/lib/dllist.c,v 1.13 1999/05/31 23:48:03 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/lib/dllist.c,v 1.14 1999/06/03 01:28:24 tgl Exp $
13
14
*-------------------------------------------------------------------------
15
*/
16
17
#include <postgres.h>
18
-
19
#include <lib/dllist.h>
20
+/* When this file is compiled for inclusion in libpq,
21
+ * it can't use assert checking. Probably this fix ought to be
22
+ * in c.h or somewhere like that...
23
+ */
24
+#ifdef FRONTEND
25
+#undef Assert
26
+#define Assert(condition)
27
+#endif
28
+
29
30
Dllist *
31
DLNewList(void)
32
{
0 commit comments