diff options
author | Marc G. Fournier <scrappy@hub.org> | 1998-08-30 19:37:51 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1998-08-30 19:37:51 +0000 |
commit | eec4c7366f04aa258bb8b7fcd2bbc90eda1cc271 (patch) | |
tree | dfb6b70845221063cc0515177b993713595ff69c /contrib/miscutil/assert_test.c | |
parent | 3067ac8e77369c1b41195b4d90e2ff2c0b23bc7f (diff) |
From: Massimo Dal Zotto <dz@cs.unitn.it>
Here is a tar file the new directories, which substitute the old ones
in contrib. Please remove the old directories array, datetime, miscutil,
string and userlock before unpacking the tar file in contrib.
Note that as the modules are now installed in lib/modules I install all
my sql code in lib/sql. In my opinion also the other contributors should
follow these rules.
Diffstat (limited to 'contrib/miscutil/assert_test.c')
-rw-r--r-- | contrib/miscutil/assert_test.c | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/contrib/miscutil/assert_test.c b/contrib/miscutil/assert_test.c deleted file mode 100644 index 793f585e510..00000000000 --- a/contrib/miscutil/assert_test.c +++ /dev/null @@ -1,43 +0,0 @@ -/* - * assert_test.c -- - * - * This file tests Postgres assert checking. - * - * Copyright (c) 1996, Massimo Dal Zotto <dz@cs.unitn.it> - */ - -#include "postgres.h" -#include "assert_test.h" - -extern int assertTest(int val); -extern int assertEnable(int val); - -int -assert_enable(int val) -{ - return assertEnable(val); -} - -int -assert_test(int val) -{ - return assertTest(val); -} - -/* - --- Enable/disable Postgres assert checking. --- -create function assert_enable(int4) returns int4 - as '/usr/local/pgsql/lib/assert_test.so' - language 'C'; - --- Test Postgres assert checking. --- -create function assert_test(int4) returns int4 - as '/usr/local/pgsql/lib/assert_test.so' - language 'C'; - -*/ - -/* end of file */ |