Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Don't hide error message from dropdb. | Peter Eisentraut | 2000-11-21 |
| | |||
* | misc | Vadim B. Mikheev | 2000-11-21 |
| | |||
* | Fix OID bootstraping. | Vadim B. Mikheev | 2000-11-21 |
| | |||
* | Adjust opr_sanity.out for small change in OID allocation. | Tom Lane | 2000-11-21 |
| | |||
* | Add missing #include <errno.h>. | Tom Lane | 2000-11-21 |
| | |||
* | keep relations open until they are no longer needed. | Hiroshi Inoue | 2000-11-21 |
| | |||
* | Make oidin/oidout produce and consume unsigned representation of Oid, | Tom Lane | 2000-11-21 |
| | | | | | | | | | | | | rather than just being aliases for int4in/int4out. Give type Oid a full set of comparison operators that do proper unsigned comparison, instead of reusing the int4 comparators. Since pg_dump is now doing unsigned comparisons of OIDs, it is now *necessary* that we play by the rules here. In fact, given that btoidcmp() has been doing unsigned comparison for quite some time, it seems likely that we have index- corruption problems in 7.0 and before once the Oid counter goes past 2G. Fixing these operators is a necessary step before we can think about 8-byte Oid, too. | ||
* | Init ShmemVariableCache in BootStrapXLOG() | Vadim B. Mikheev | 2000-11-21 |
| | | | | (should fix OID bootstraping). | ||
* | Simplify definition of pg_tables and pg_views views by making use of | Tom Lane | 2000-11-21 |
| | | | | | | new separate relkind for views (per some discussion back in September). I didn't force initdb, but rules regress test will show differences until you do one. | ||
* | Fix erroneous handling of parameters at SubqueryScan plan nodes, | Tom Lane | 2000-11-21 |
| | | | | per bug report from Don Baccus. | ||
* | Fix yacc failures in preproc.y. | Tom Lane | 2000-11-20 |
| | |||
* | Silence gcc warnings. | Tom Lane | 2000-11-20 |
| | |||
* | No casting to LSN (XLogRecPtr) is required. | Vadim B. Mikheev | 2000-11-20 |
| | |||
* | Revise handling of oldstyle/newstyle functions per recent discussions | Tom Lane | 2000-11-20 |
| | | | | | | | | | in pghackers list. Support for oldstyle internal functions is gone (no longer needed, since conversion is complete) and pg_language entry 'internal' now implies newstyle call convention. pg_language entry 'newC' is gone; both old and newstyle dynamically loaded C functions are now called language 'C'. A newstyle function must be identified by an associated info routine. See src/backend/utils/fmgr/README. | ||
* | Enable WAL in config.h, not Makefile.global. | Peter Eisentraut | 2000-11-20 |
| | |||
* | Include postgres.h before checking #ifdef XLOG. | Peter Eisentraut | 2000-11-20 |
| | |||
* | Add configure checks for strtoll, strtoull (or strto[u]q). Disable | Peter Eisentraut | 2000-11-20 |
| | | | | | 'long long int' portions of ecpg if the type or these functions don't exist. | ||
* | Parser synced. | Michael Meskes | 2000-11-20 |
| | |||
* | Encoding patch to Connection by wrobell@posexperts.com.pl | Peter Mount | 2000-11-20 |
| | |||
* | Compile WAL by default. | Vadim B. Mikheev | 2000-11-20 |
| | |||
* | Eliminate unused-variable warning. | Tom Lane | 2000-11-20 |
| | |||
* | Fix typo. | Tom Lane | 2000-11-19 |
| | |||
* | Update README with proposed new method for determining calling convention | Tom Lane | 2000-11-19 |
| | | | | | | of user-defined functions (forget 'C' vs 'newC', instead require an info function to be present for new-style functions). Also update some other out-of-date commentary. | ||
* | Polish error messages, help output, give marginal clue about command line | Peter Eisentraut | 2000-11-18 |
| | | | | | option conventions. (E.g., "pg_passwd -?" should not write to a file named "-?".) | ||
* | Simplification: Build executable directly from .c file. | Peter Eisentraut | 2000-11-18 |
| | |||
* | Modify input and output routines to print plain binary strings without any | Peter Eisentraut | 2000-11-18 |
| | | | | 'b' prefixes. | ||
* | Treat plain 'BIT' as 'BIT(1)'. | Peter Eisentraut | 2000-11-18 |
| | |||
* | Tweak AbsoluteTimeIsReal() to avoid compiler bugs on machines where | Tom Lane | 2000-11-18 |
| | | | | | a > comparison against INT_MIN may do the wrong thing. Per suggestion from Andreas. | ||
* | AIX patches from Andreas. | Tom Lane | 2000-11-18 |
| | |||
* | Suppress 'comparison-is-always-true' warning on machines | Tom Lane | 2000-11-18 |
| | | | | where char is signed by default. | ||
* | Modify locale code to defend against possibility that it was compiled | Tom Lane | 2000-11-18 |
| | | | | | | | | | | with an -fsigned-char/-funsigned-char setting opposite to that of libc, thus breaking the convention that 'undefined' values returned by localeconv() are represented by CHAR_MAX. It is sheer stupidity that gcc even has such a switch --- it's just as bad as the structure-packing control switches offered by the more brain-dead PC compilers --- and as for the behavior of Linux distribution vendors who set RPM_OPT_FLAGS differently from the way they built libc, well, words fail me... | ||
* | Put back BufferSync() for WAL after database creation. | Tom Lane | 2000-11-18 |
| | | | | Also, add some comments about what it's for... | ||
* | Add separate type category for bit string types, allowing mixed bit/varbit | Peter Eisentraut | 2000-11-17 |
| | | | | function calls to work. | ||
* | Fix bugs in EUC_TW support. This fix includes patches contributed | Tatsuo Ishii | 2000-11-17 |
| | | | | | by Chih-Chang Hsi. See "A Patch for MIC to EUC_TW code converting in mb support" posting in pgsql-patches list dated 09 Nov 2000. | ||
* | Recongizing PGCLIENTENCODING has been broken since 7.0. | Tatsuo Ishii | 2000-11-17 |
| | |||
* | Fix spelling errors in error message. | Tom Lane | 2000-11-17 |
| | |||
* | Suppress occasional failure of final DROP DATABASE due to | Tom Lane | 2000-11-17 |
| | | | | | race condition --- old backend may not have shut down by the time we try to do the DROP. | ||
* | GNUmakefile failed to provide a way to invoke perl Makefile's | Tom Lane | 2000-11-17 |
| | | | | 'make test' target. | ||
* | Forgot to add ppport.h to MANIFEST. | Tom Lane | 2000-11-17 |
| | |||
* | Make a pstrdup copy of the literalbuf when scanning a bit string. Other- | Peter Eisentraut | 2000-11-16 |
| | | | | wise the next bit string in the same command clobbers the previous ones. | ||
* | Change SearchSysCache coding conventions so that a reference count is | Tom Lane | 2000-11-16 |
| | | | | | | | maintained for each cache entry. A cache entry will not be freed until the matching ReleaseSysCache call has been executed. This eliminates worries about cache entries getting dropped while still in use. See my posting to pg-hackers of even date for more info. | ||
* | Print bit values as binary strings (not hex) | Peter Eisentraut | 2000-11-16 |
| | |||
* | Add support for casting bit string constants. | Peter Eisentraut | 2000-11-16 |
| | |||
* | Clean files after installing, since those files will most likely be root | Peter Eisentraut | 2000-11-16 |
| | | | | owned, which can be annoying. | ||
* | That variable I removed broke XLOG, that part of the delta | Bruce Momjian | 2000-11-16 |
| | | | | | | should have read: Alfred Perlstein | ||
* | Make pgsql compile on FreeBSD-alpha. | Bruce Momjian | 2000-11-16 |
| | | | | | | | | | | | | | | | | | | Context diff this time. Remove -m486 compile args for FreeBSD-i386, compile -O2 on i386. Compile with only -O on alpha for codegen safety. Make the port use the TEST_AND_SET for alpha and i386 on FreeBSD. Fix a lot of bogus string formats for outputting pointers (cast to int and %u/%x replaced with no cast and %p), and 'Size'(size_t) are now cast to 'unsigned long' and output with %lu/ Remove an unused variable. Alfred Perlstein | ||
* | Syslog Facility Patch | Bruce Momjian | 2000-11-16 |
| | | | | | | Here is one with a stray character removed. Larry Rosenman | ||
* | Rename parameter "hostname" to "virtual_host". Seemed very ambiguous... | Peter Eisentraut | 2000-11-15 |
| | |||
* | Clean up array-dimensions parser a bit. | Tom Lane | 2000-11-14 |
| | | | | This code still needs a lot of love, however ... | ||
* | Fix return type | Peter Eisentraut | 2000-11-14 |
| |