https://github.com/postgres/postgres

sort by:
Revision Author Date Message Commit Date
14a3ecf This commit was manufactured by cvs2git to create branch 'REL2_0B'. Sprout from master 1996-12-09 01:24:53 UTC Bryan Henderson <bryanh@giraffe.netgate.net> 'Remove include of libpq-fe.h. This file has nothing to do with libpq.' Delete: src/bin/monitor/Makefile src/bin/monitor/monitor.c 09 December 1996, 01:24:54 UTC
33edbdb Remove include of libpq-fe.h. This file has nothing to do with libpq. 09 December 1996, 01:24:53 UTC
79729c0 Add comments defining "typelem" column of pg_type. 09 December 1996, 01:23:51 UTC
b36e304 Add comments describing interface to heap_getattr(). 09 December 1996, 01:22:17 UTC
6cfb12e Add CUSTOM_CC variable for Makefile.custom. Thanks Kurt Lidl. 09 December 1996, 01:16:51 UTC
8cedf57 Reduce printing from debug level 2 ande layout change. 07 December 1996, 04:39:38 UTC
2e20099 Reduce printing from deub level 2 ande layout change. 07 December 1996, 04:38:40 UTC
c0941ab Remove Dan's fix of SELECT NULL to fix INSERT NULL. 07 December 1996, 04:38:11 UTC
7f8b8b9 Fix for SELECT NULL. 07 December 1996, 04:37:06 UTC
c90c058 Fix from Jan agreed with by Massimo. 07 December 1996, 04:36:38 UTC
4e064c0 _bt_updateitem is returned in code, but works only if sizes of keys are equal. 06 December 1996, 09:45:30 UTC
c3e10a4 1. _bt_compare fixed to work properly with new code in _bt_insertonpg (old _bt_compare always returned >= 0 while comparing with P_HIKEY on root page - it breaks root page when _bt_insertonpg tries insert new minimal key into root page). 2. Fixed bug concerns "empty" pages: non-rightmost pages with only P_HIKEY present on it. Such pages appear after vacuum. 06 December 1996, 09:41:45 UTC
64397b7 Remove duplicate patch for COUNT fix. 04 December 1996, 14:23:16 UTC
9005a38 Change portname "sparc" to "sunos4" and change some portname dependencies to feature dependencies. Thanks Kurt J. Lidl. 04 December 1996, 03:06:33 UTC
071797f Change tests to lowercase for esthetics. 03 December 1996, 17:01:35 UTC
e5fbe30 pname=NULL -> pname="" (stringinfo.c:appendStringInfo doesn't like NULL). 03 December 1996, 05:50:11 UTC
f2af019 Make COUNT,SUM case insensitive. 03 December 1996, 05:06:35 UTC
514d69b Remove #if defined(bsdi) define SIGJMP_BUF, per Kurt Lidl. 03 December 1996, 00:11:07 UTC
5819336 Reduce regression diffs 02 December 1996, 14:17:59 UTC
5f9bdb7 Reduce regression diff size with timezone changes and cleanup. 02 December 1996, 06:31:20 UTC
7980b8a Fix for inclusion of new prompt output. 01 December 1996, 20:28:39 UTC
1eae8e1 Fix compiler warning about unitialized variables. 01 December 1996, 19:48:39 UTC
63df35e This patch changes quite a few instances of references of Oid's as ints and longs. Touches on quite a few function args as well. Most other files look ok as far as Oids go...still checking though... Since Oids are type'd as unsigned ints, they should prolly be used with the %ud format string in elog and sprintf messages. Not sure what kind of strangeness that could produce. Darren King 30 November 1996, 18:07:02 UTC
f0a9e64 As someone asked for this feature - patch for 1.09 follows. Now You can do queries like select sum(some_func(x)) from ... select min(table1.x + table2.y) from table1, table2 where ... and so on. Vadim 30 November 1996, 17:49:02 UTC
8735272 Change end-of-line comma to semicolon. 30 November 1996, 17:47:07 UTC
d3e0860 Aded mention that != maps to <>. 30 November 1996, 04:56:18 UTC
440279e Add indicator for in quote or in query to prompt. 30 November 1996, 03:41:20 UTC
2d7aacb Added BETWEEN and IN to grammar. Map != to <>. 30 November 1996, 03:38:09 UTC
a3d773a Allow select oid,* from table. Allow * anywhere in target list. 29 November 1996, 15:56:18 UTC
a962c61 vrl_min_tlen added to VRelListData. 29 November 1996, 10:29:45 UTC
03659a2 Added: dynamic re-moving page from list of pages usable for shrinking if its free-space < min_tuple_len. 29 November 1996, 10:27:59 UTC
7b4426e Throw some double quotes on the pile! 29 November 1996, 06:24:14 UTC
316e81c Fix for BSDI compile. 29 November 1996, 04:49:46 UTC
ba876c1 Changed saved_relname size to save memory. 28 November 1996, 05:46:08 UTC
c7cba57 Fix for "might be used uninitialized" warnings. 28 November 1996, 04:37:38 UTC
f0e7004 Make strdup work for Ultrix. Thanks Erik Bertelsen 28 November 1996, 03:32:18 UTC
0667fd9 TransactionIdIsInProgress is commented out 27 November 1996, 15:15:54 UTC
6450bef Convert ' to " in dates. Update example code to show empty query as "". 27 November 1996, 13:49:46 UTC
c9ec450 Remove unused define's. 27 November 1996, 13:48:58 UTC
134c35c no change 27 November 1996, 13:48:23 UTC
79b1a0f Allow all empty queries to return EMPTY. 27 November 1996, 13:47:05 UTC
9c0afea More stuff to make it compile on various ports. 27 November 1996, 08:16:44 UTC
a38365e New structures for new vacuum. 27 November 1996, 07:35:06 UTC
948720e New mdtruncate() & smgrtruncate() funcs. 27 November 1996, 07:33:42 UTC
b41aa39 TransactionIdIsInProgress moved to shmem.c 27 November 1996, 07:32:10 UTC
f0c5a6c Shrinking and other things. 27 November 1996, 07:27:20 UTC
3385497 New smgrtruncate smgr' interface func. 27 November 1996, 07:25:52 UTC
a2a33e1 New mdtruncate() func for single segment relations (< 2Gb). 27 November 1996, 07:24:02 UTC
3643248 TransactionIdIsInProgress is here now and gives quality answer by scanning PROC structures of all running backend. 27 November 1996, 07:20:07 UTC
47312ec Setting MyProc->xid to InvalidTransactionId while creating PROC structure (it's for new TransactionIdIsInProgress func). 27 November 1996, 07:17:48 UTC
713b65e Setting MyProc->xid to current transaction' id in StartTransaction and to InvalidTransactionId in CommitTransaction & AbortTransaction (it's for new TransactionIdIsInProgress func). 27 November 1996, 07:14:51 UTC
1db76d7 TransactionIdIsInProgress moved to shmem.c 27 November 1996, 07:10:59 UTC
89c7e18 Forgot in yesterday's Ultrix compile work. 27 November 1996, 01:46:52 UTC
8cfe27d OK, I think I've got the postconfig thing right now. 26 November 1996, 08:12:39 UTC
93f7225 Whoops, redo Ultrix patch so the other ports still compile. 26 November 1996, 07:39:11 UTC
c118543 Fix double-colon syntax error on fe-lobj.o. 26 November 1996, 06:33:18 UTC
46d58fb Make it compile on Ultrix. Thanks Erik Bertelson. 26 November 1996, 03:20:35 UTC
02c0eb6 Properly structure ProcedureNameIndexScan so it doesn't generate "may be used before being set" warnings. 26 November 1996, 02:45:05 UTC
bf14017 Put in #include <fcntl.h> for those systems that don't have it included by something else. 26 November 1996, 01:17:56 UTC
f93f780 -Werror fixes from D'Arcy. 26 November 1996, 01:14:38 UTC
46c4e6f Include fcntl.h, which is not automatically included by sys/file.h on all systems. 25 November 1996, 06:33:51 UTC
1d84088 Go back to $(postconfig...) from $(exec postconfig...) so it works on non-bash. 25 November 1996, 05:51:50 UTC
6c2925b Prevent empty queries from crashing server. 25 November 1996, 03:03:48 UTC
02db1f5 Fix access through null pointer info->rule_action. Thanks Darren King. 24 November 1996, 05:58:57 UTC
9602150 Fix syntax error: missing argument to elog(). Thanks Darren King. 24 November 1996, 05:46:12 UTC
092c7a6 Typecasts, etc. to make compile work on AIX. Thanks Darren King.. 24 November 1996, 04:44:24 UTC
d3f9d6a Move include of signal.h inside pqsignal.h so it's always where it's needed. 24 November 1996, 04:07:17 UTC
7e499bd Add dep: rule. 24 November 1996, 03:55:19 UTC
5c410fa First pass at getting shared libraries on AIX properly built. 23 November 1996, 09:51:57 UTC
45f1d32 Eliminate pesky "postconfig not found" message. 23 November 1996, 09:42:51 UTC
eda3771 Fix for \g strdup error. 22 November 1996, 06:45:14 UTC
25fe3c7 Include ctype.h to fix Kurt Lidl's compile problem. 22 November 1996, 04:43:48 UTC
4da9c59 Include stdio.h to fix Craig Anderson's compile problem. 22 November 1996, 04:39:53 UTC
86ab9a5 Fix bug: No -D option to postgres 22 November 1996, 04:33:34 UTC
e67cc8a Fix bug: -D options implies -d option. 22 November 1996, 04:32:41 UTC
8c2f099 Fix memory overhelding while forming index' result: memory allocation for ItemPointerData of heap' tuple is useless because of FormRetrieveIndexResult makes neccessary palloc. 21 November 1996, 06:13:43 UTC
5d7e44f Fix memory overhelding while forming index' result: memory allocation for ItemPointerData of heap' tuple is useless because of FormRetrieveIndexResult makes neccessary palloc. 21 November 1996, 06:06:52 UTC
05b3b86 Fix memory overhelding while forming index' result: memory allocation for ItemPointerData of heap' tuple is useless because of FormRetrieveIndexResult makes neccessary palloc. 21 November 1996, 06:02:56 UTC
58802bf Can't add a keyword without making it a keyword. :-) D'Arcy J.M. Cain | Democracy is three wolves 20 November 1996, 22:58:22 UTC
cd743f8 Otherwise "gmake install" fails. D'Arcy J.M. Cain | Democracy is three wolves 20 November 1996, 22:53:49 UTC
c4d6bda There is a bug in aclinsert3 in the code which update the acl arrays. When an acl item is added or updated the new entry is deleted if it has no permissions and the acl array is shrinked. This is is done by decrementing the number of items without updating the corresponding array size. The array with the incorrect size is later read by pg_aclcheck and the entry count is used to allocate a new array while the array size is used to copy the old one. This causes a memory corruption and a backend crash. This happens only to normal user as the administrator bypasses acl checks. Massimo Dal Zotto 20 November 1996, 22:53:10 UTC
8299e75 following is a little fix for libpq. PQexec handles the possibility of multiple results from one query by simply submitting an empty query after the first result and waiting for an 'I' message. Rules can generate errors with transaction abort after the first 'C' message was recieved (e.g. if a C-language function used in a rule calls elog(WARN, ...)). Thus we have to look for. Jan(wieck@sapserv.debis.de) 20 November 1996, 22:35:19 UTC
6399c74 Fix \g filename. Free allocated memory and don't use memory that has been freed. 20 November 1996, 22:34:36 UTC
9d45f22 Here is the patch for pg_dump not handling NULL values in 'insert' mode properly. This will apply correctly to 1.09 & 2.0 sources. From David H. Bennett 20 November 1996, 22:32:55 UTC
bdb25db Fix for man Makefile. Added 'all'. 20 November 1996, 01:54:13 UTC
9529238 Make install change for man files 19 November 1996, 22:23:13 UTC
2abbf39 Removed old Assert's used during development. 19 November 1996, 05:06:39 UTC
81f5c66 This file has not been part of the regression test for many releases. 19 November 1996, 02:57:10 UTC
13312a0 The routines in magic.c have moved to the more accessible version.c. 19 November 1996, 02:55:37 UTC
b8eb640 Eliminate mk/ directory. The tyranny of the included make file templates is ended! 19 November 1996, 02:52:21 UTC
be421b9 Build man/ instead of ../doc. Man pages have moved there. 19 November 1996, 02:43:46 UTC
c6453ea Added DLSUFFIX to bsdi. 18 November 1996, 16:32:53 UTC
317f375 Rename SLSUFF to DLSUFFIX 18 November 1996, 06:07:56 UTC
4a820de Include some macros that used to be -D options in Makefile.global. 18 November 1996, 02:27:27 UTC
e2a8163 Remove linux define of __USE_POSIX, which doesn't appear to do anything. 18 November 1996, 02:26:57 UTC
b55d49f Add comments about the diversity of signal functionality. Came from Makefile.global. 18 November 1996, 02:25:09 UTC
87f5fda Make port-specific link libraries defined for linking backend more global so you can also link pgtclsh. 18 November 1996, 02:23:41 UTC
bd57c3a Quiet compiler warnings about missing prototypes in Linux's bitops.h. 18 November 1996, 01:45:44 UTC
435d4f4 Quiet compiler warnings, ignore the ones we can't. 18 November 1996, 01:44:28 UTC
e780f0f Ignore compiler warnings, because we can't escape "abstract declarator used as declaration". 18 November 1996, 01:43:55 UTC
back to top