1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-18 02:02:55 +03:00

From: Jeroen van Vianen <jeroenv@design.nl>

Attached patch will add a version() function to Postges, e.g.

template1=> select version();
version
------------------------------------------------------------
PostgreSQL 6.3.2 on i586-pc-linux-gnu, compiled by gcc 2.8.1
(1 row)
This commit is contained in:
Marc G. Fournier
1998-04-29 12:41:29 +00:00
parent bab9818c4b
commit 51a1741cfb
11 changed files with 422 additions and 325 deletions

View File

@@ -7,7 +7,6 @@
#define JMP_BUF
#define USE_POSIX_TIME
#define USE_POSIX_SIGNALS
#define NEED_I386_TAS_ASM
#define HAS_TEST_AND_SET
#if defined(PPC)
@@ -16,7 +15,7 @@ typedef unsigned int slock_t;
#elif defined(__alpha)
typedef long int slock_t;
#else
#else /* i386 probably */
typedef unsigned char slock_t;
#endif