https://github.com/postgres/postgres

sort by:
Revision Author Date Message Commit Date
27e7ac1 Update for latest version of horology test. 06 November 2001, 18:03:48 UTC
d22e945 Clean up formatting of child process exit-status reports so that they are correct, consistent, and complete ... motivated by gripe from Oliver Elphick, but I see someone had already made an incomplete stab at this. 06 November 2001, 18:02:48 UTC
d2ff7e5 Fix last (?) problem with sensitivity to daylight savings time status when running the regression test. Reported by Tom Lane. 06 November 2001, 16:31:13 UTC
3ea311d Add British Double Standard Time (BDST) per mailing list report. 06 November 2001, 16:29:51 UTC
e160fcd Use PostgreSQL's standard declaration for a 32-bit integer to define the cash data type. 06 November 2001, 16:27:31 UTC
d980ddb Add Darwin to list of known systems for ps_status. 06 November 2001, 01:15:29 UTC
ca7578d The extra semaphore that proc.c now allocates for checkpoint processes should be accounted for in the PROC_SEM_MAP_ENTRIES() macro. Otherwise the ports that rely on this macro to size data structures are broken. Mea culpa. 06 November 2001, 00:38:26 UTC
0053ceb Fix coredump in plpgsql when trying to return a rowtype result. Need to return a TupleTableSlot, not just a bare tuple. 05 November 2001, 19:41:56 UTC
ea08e6c New pgindent run with fixes suggested by Tom. Patch manually reviewed, initdb/regression tests pass. 05 November 2001, 17:46:40 UTC
34153b2 Preparation for the parameter array handling. 05 November 2001, 10:35:14 UTC
c0b27c4 1) Fix a few bugs about SQLGetData() reported by Mika Mantyla. 2) Timestamp precision. 3) Separate ODBC3.0 files. 05 November 2001, 09:46:17 UTC
0f450da More cleanup for stuff after closing brace in first column. 05 November 2001, 06:37:51 UTC
d447dbf Handle tabs after closing brace in first column with less indenting. 05 November 2001, 05:47:50 UTC
158129b Improve readability of script. 05 November 2001, 05:18:43 UTC
5251e7b CREATE TABLE foo (x,y,z) AS SELECT ... can't apply target column names to the target list in gram.y; it must wait till after expansion of the target list in analyze.c. Per bug report 4-Nov: lx=# CREATE TABLE abc (a char, b char, c char); CREATE lx=# CREATE TABLE xyz (x, y, z) AS SELECT * FROM abc; ERROR: CREATE TABLE/AS SELECT has mismatched column count 05 November 2001, 05:00:14 UTC
d556920 Remove ill-considered Assert. 05 November 2001, 01:34:37 UTC
3bb110e Pull in variables defined in structs; had too many tabs. 04 November 2001, 21:27:41 UTC
430cd88 Fix now-obsolete comment. 04 November 2001, 20:12:57 UTC
568cb6a Version was 3.3 but last released version was 3.1. Setting to match rest of the documentation in preparation for upcoming release. 04 November 2001, 20:11:01 UTC
fb5f1b2 Merge three existing ways of signaling postmaster from child processes, so that only one signal number is used not three. Flags in shared memory tell the reason(s) for the current signal. This method is extensible to handle more signal reasons without chewing up even more signal numbers, but the immediate reason is to keep pg_pwd reloads separate from SIGHUP processing in the postmaster. Also clean up some problems in the postmaster with delayed response to checkpoint status changes --- basically, it wouldn't schedule a checkpoint if it wasn't getting connection requests on a regular basis. 04 November 2001, 19:55:31 UTC
5f06772 Note that PyGreSQL has been checked against Python 2.1 now. 04 November 2001, 19:47:16 UTC
6395d86 The "%d", while syntactically correct, was confusing. Added a space to make it clearer that d was the argument to the format operator. 04 November 2001, 19:42:13 UTC
1ef62bb - Fix compiler warning in pg_restore - Fix handling of {data/schema}-only restores when using a full backup file; prior version was restoring schema in data-only restores. Added enum to make code easier to understand. 04 November 2001, 04:05:36 UTC
7cc8af5 Got "ADD" to appear only in ALTER TABLE and not CREATE TABLE UNIQUE-PRIMARY KEY notice message. This is what Christopher wanted from his patch. 04 November 2001, 03:08:11 UTC
434077c Remove "ADD" from TABLE / ADD UNIQUE-PRIMARY error message because the same code is called for both creation and alter. Not worth worrying about. 04 November 2001, 02:41:09 UTC
8ee7c19 Require closing paren on line above brace to identify function difinition, just for formatting workaround, per Tom's discovery. 03 November 2001, 22:34:13 UTC
3d5ddc0 Clean up wrong, misleading, or obsolete documentation about array types, particularly in the CREATE TYPE reference page. Fix some other errors in the CREATE TYPE page, too. 03 November 2001, 21:42:47 UTC
f008976 More updates for GNU indent. 03 November 2001, 12:34:15 UTC
58df3f7 1) Improve literal handling in parse_statement(). 2) Remove some no longer valid comments. 3) Fix an option dialog setting bug. 4) Fix ODBCVER handling errors. 03 November 2001, 06:53:50 UTC
ffba91c Make pgindent use GNU Indent version 2.X better. 03 November 2001, 01:49:22 UTC
355cc69 proper select for Jason Davies patch to getImportedKeys 02 November 2001, 23:51:18 UTC
0b1289e proper select for Jason Davies patch to getImportedKeys fixes for compiling Jason's getImportedKeys, getExportedKeys 02 November 2001, 23:50:08 UTC
04550d3 Add check for 'extern "C"' for pgindent. 02 November 2001, 23:43:24 UTC
c42d3b3 Windows portability macros SOCK_ERRNO and SOCK_STRERROR should be in libpq-int.h, not cluttering application namespace in libpq-fe.h. 02 November 2001, 20:51:27 UTC
9685afb Add default expressions to INSERTs during planning, not during parse analysis. This keeps stored rules from prematurely absorbing default information, which is necessary for ALTER TABLE SET DEFAULT to work unsurprisingly with rules. See pgsql-bugs discussion 24-Oct-01. 02 November 2001, 20:23:02 UTC
a9b6691 updates 02 November 2001, 19:16:47 UTC
e25058b Update keyword list for 7.2 release. 02 November 2001, 19:13:09 UTC
8a069ab Fix pg_pwd caching mechanism, which was broken by changes to fork postmaster children before client auth step. Postmaster now rereads pg_pwd on receipt of SIGHUP, the same way that pg_hba.conf is handled. No cycles need be expended to validate password cache validity during connection startup. 02 November 2001, 18:39:57 UTC
6babf6e Suppress compiler warning (only seen in MULTIBYTE case). 02 November 2001, 17:00:18 UTC
7d05310 Fix problem reported by Alex Korn: if a relation has been dropped and recreated since the start of our transaction, our first reference to it errored out because we'd try to reuse our old relcache entry for it. Do this by accepting SI inval messages just before relcache search in heap_openr, so that dead relcache entries will be flushed before we search. Also, break heap_open/openr into two pairs of routines, relation_open(r) and heap_open(r). The relation_open routines make no tests on relkind and so can be used to open anything that has a pg_class entry. The heap_open routines are wrappers that add a relkind test to preserve their established behavior. Use the relation_open routines in several places that had various kluge solutions for opening rels that might be either heap or index rels. Also, remove the old 'heap stats' code that's been superseded by Jan's stats collector, and clean up some inconsistencies in error reporting between the different types of ALTER TABLE. 02 November 2001, 16:30:29 UTC
5d4b940 Sync parser yet again. 02 November 2001, 15:04:03 UTC
36aa85d Update TODO list. 01 November 2001, 20:06:59 UTC
3c9b549 Minor code cleanups. 01 November 2001, 18:10:48 UTC
7663e6b Reject tabs and linefeeds in usernames and passwords that are being stored in pg_pwd, to guard against failures of the sort observed by Tom Yackel. Note: in the case of encrypted passwords this is no restriction, since the string we are interested in is the MD5 hash. 01 November 2001, 18:09:58 UTC
bdea97e Add missing #include. 01 November 2001, 06:17:01 UTC
4877c59 Suppress trivial compiler warning. 01 November 2001, 05:45:28 UTC
fe61b6c Fix broken markup. 01 November 2001, 04:48:00 UTC
d14147d Copy-editing. 01 November 2001, 04:07:29 UTC
8304a39 minor improvements on Dave's last checkin 01 November 2001, 01:10:13 UTC
01da8e9 Suppress a compiler warning. 31 October 2001, 23:54:02 UTC
d63805a A little reformatting for better print appearance. 31 October 2001, 20:39:30 UTC
8e144b0 More information about partial indexes, and some tips about examining index usage. 31 October 2001, 20:38:26 UTC
028c725 Reformat some non-sensical markup. 31 October 2001, 20:37:39 UTC
d6b2d6b Empty ulinks show the url string as hot text; no need to repeat the url as element content. 31 October 2001, 20:35:02 UTC
1da3771 changes to support 3rd party ERD tools and staroffice 31 October 2001, 20:27:37 UTC
af000b7 allow null passwords 31 October 2001, 20:26:01 UTC
2991608 added dummy login 31 October 2001, 20:24:32 UTC
fa8505f Update TODO list. 31 October 2001, 15:11:08 UTC
453baec Update TODO list. 31 October 2001, 15:06:02 UTC
c859ff9 Fix queries to insulate from daylight savings time. 31 October 2001, 14:44:23 UTC
57584d7 More *.po cleanups for new spacing. 31 October 2001, 05:16:31 UTC
e7fc060 Modify *.po files and regression expected output for new clearer error message spacing. 31 October 2001, 05:14:33 UTC
37bba02 Here is an updated version of /src/backend/po/ru.po which incorporates recent changes by Bruce to readability of some messages and few more translations. -- Serguei A. Mokhov 31 October 2001, 04:58:36 UTC
8581758 Traditional Chinese error messages for JDBC. Zhenbang Wei 31 October 2001, 04:55:02 UTC
85801ed Attached is a small patch for the Reference Manual which adds information about nulls and sort order. This is based on information obtained from Peter Eisentraut and Tom Lane on pgsql-hackers. Please check my English and Docbook markup, as both are a second language to me. Rene Pijlman 31 October 2001, 04:50:52 UTC
4911c85 Add ALTER TABLE ADD UNIQUE regression tests from Christopher Kings-Lynne. Add space between slash for ALTER TABLE / ADD .... Regression and *.po updates to follow. 31 October 2001, 04:49:44 UTC
74c2f8e Apply updated PO language patch. Zhenbang Wei 31 October 2001, 04:31:17 UTC
41b161f PO language update. forth@pagic.net 31 October 2001, 04:20:26 UTC
2fd8f89 Update TODO list. 31 October 2001, 01:56:55 UTC
9a88b8a Update solaris-1947 variant files for new datetime regression tests. Results checked by Olivier Prenant. 30 October 2001, 22:48:57 UTC
2f254bd updates to JDBC TODO items 30 October 2001, 20:45:17 UTC
b9cd4c8 Grammatical corrections. 30 October 2001, 20:13:44 UTC
96ca8ff Fix problems with subselects used in GROUP BY expressions, per gripe from Philip Warner. Side effect of change is that GROUP BY expressions will not be re-evaluated at multiple plan levels anymore, whereas this sometimes happened with old code. 30 October 2001, 19:58:58 UTC
512a3ae fixed change in behavior introduced in bytea / getBytes changes. This patch reverts back unintentional change in behavior to return raw value even when not bytea column 30 October 2001, 06:31:59 UTC
c41b6b1 Fix small problem Tom Lane found with pgindent run. 30 October 2001, 05:38:56 UTC
d650a6f updated patch from Mark Lillywhite per Tom Lane's comments: subtract VARHDRSZ first then and with 0xffff 30 October 2001, 05:09:51 UTC
d80d4ba applied patch from Mark Lillywhite, patch was already applied to jdbc2, this applies same fix to jdbc1 code 30 October 2001, 05:05:25 UTC
cd01c32 Add trailing semicolon for Joe Conway 29 October 2001, 19:41:54 UTC
2f1e1bc Update HISTORY per HACKERS discussion. 29 October 2001, 19:28:48 UTC
8469a33 Add gp->gr_mem != NULL check for Solaris, per Seth Hettich 29 October 2001, 18:06:54 UTC
40b1403 Check for NULL return from getgrgid(), per Seth Hettich 29 October 2001, 17:55:41 UTC
f2a2ad5 Fix bug with illegal call to calloc. 29 October 2001, 06:45:32 UTC
aaf95b6 Change position of a check button in multibyte mode. 29 October 2001, 02:51:46 UTC
6783b23 Another pgindent run. Fixes enum indenting, and improves #endif spacing. Also adds space for one-line comments. 28 October 2001, 06:26:15 UTC
c29797d Add code to trip trailing newlines in a file. 27 October 2001, 13:54:45 UTC
5ef74fe Correct fix for indenting. 27 October 2001, 03:31:36 UTC
6b0be33 Update WAL configuration discussion to reflect post-7.1 tweaking. Minor copy-editing. 26 October 2001, 23:10:21 UTC
8394e47 More cleanup of CREATE FUNCTION examples. 26 October 2001, 21:17:03 UTC
8dcf998 Remove no-longer-needed dependencies on DLSUFFIX. 26 October 2001, 20:45:33 UTC
62651c0 Editorial work on xfunc chapter --- better explanations about SQL functions handling composite types and sets, various minor cleanups. 26 October 2001, 19:58:12 UTC
b93939a Adjust NR tests. More accurate. 26 October 2001, 17:54:45 UTC
8c1f4e5 Add code to not indent enum, per Tom Lane. 26 October 2001, 16:21:13 UTC
99a9f2f Add ODBC typedefs. 26 October 2001, 15:42:54 UTC
effeef8 Update TODO list. 26 October 2001, 15:27:41 UTC
b75e175 updates to jdbc documentation for 7.2 25 October 2001, 22:00:31 UTC
40ce3a9 Remove 294 reduce/reduce conflicts. 25 October 2001, 20:56:53 UTC
22d9e91 Fix a couple of places where lack of parenthesization of a cast causes pgindent to make weird formatting decisions. Easiest fix seems to be to put in the extra parens... 25 October 2001, 20:37:30 UTC
73c5ad9 Mention pgindent/pgjindent. 25 October 2001, 20:00:58 UTC
7ebf6cb Final update of HISTORY. 25 October 2001, 19:59:23 UTC
80b9a00 Add blank line before #endif to #endif's at the end of the file. 25 October 2001, 19:57:03 UTC
back to top