aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
...
* Source alignment cleanups.Bruce Momjian2001-02-11
|
* More updates.Bruce Momjian2001-02-11
|
* More cleanup.Bruce Momjian2001-02-11
|
* More cleanup.Bruce Momjian2001-02-11
|
* Cleanup of source.Bruce Momjian2001-02-11
|
* The attached patch does the following:Bruce Momjian2001-02-11
| | | | | | | | | 1) Tidies up the Datasource Dialogue now the version options are gone. 2) Tidies a comment in info.c. 3) Increments all version numbers to 07.01.0003 to take account of recent revisions. Regards, Dave Page
* Move pg_encoding_mblen() from common.c to wchar.c.Tatsuo Ishii2001-02-11
|
* conv.c did not compile anymore. Fix wrong header file inclusion.Tatsuo Ishii2001-02-11
|
* Clean up mutibyte supoorting source files.Tatsuo Ishii2001-02-11
| | | | Now only wchar.c is shared by fronetnd/backend.
* Disable X connection close in ODBC until solution is found.Bruce Momjian2001-02-10
|
* Format to match standard conventionsBruce Momjian2001-02-10
|
* Convert to standard 4-space tabs.Bruce Momjian2001-02-10
|
* Only look for bison as YACC; other yaccs need to be selected explicitly.Peter Eisentraut2001-02-10
| | | | | When no suitable YACC is configured, supply useful informational messages to users. (Same way flex has been handled for a while.)
* move commentBruce Momjian2001-02-10
|
* Add comment about linker/compiler on bsd.Bruce Momjian2001-02-10
|
* Fix -Bsymbolic for FreeBSD and OpenBSD. NetBSD already had all these fixes.Bruce Momjian2001-02-10
|
* Repair BSD/OS shared library fixes.Peter Eisentraut2001-02-10
|
* Revert shlib changes.Bruce Momjian2001-02-10
|
* Remove protcol option buttons.Bruce Momjian2001-02-10
|
* ODBC BSD/OS fix.Bruce Momjian2001-02-10
|
* Allow -Bsymbolic on BSDI for ODBC.Bruce Momjian2001-02-10
|
* Fix on LinuxPeter Eisentraut2001-02-10
|
* More ODBC formatting cleanup.Bruce Momjian2001-02-10
|
* Run pgindent over ODBC source. We couldn't do this years ago because weBruce Momjian2001-02-10
| | | | weren't the master source. We are now, and it really needs it.
* Remove protocol-dependent code. This should have been on previous commit.Bruce Momjian2001-02-10
|
* CleanupBruce Momjian2001-02-10
|
* More cleanup, again not sure it works.Bruce Momjian2001-02-10
|
* Clean up bad variable used in script. Still not sure it works under Linux.Bruce Momjian2001-02-10
|
* Properly exit ODBC with 'X', allow linking on BSD/OS.Bruce Momjian2001-02-10
|
* Fix byte-vs-word-width oversight in m68k TAS() code.Tom Lane2001-02-10
| | | | Man, this brings back some old memories ...
* Ignore leading whitespace when trying to determine statement type,Tom Lane2001-02-10
| | | | | so that ODBC driver doesn't go belly up by failing to recognize a SELECT as such.
* Restructure the key include files per recent pghackers discussion: thereTom Lane2001-02-10
| | | | | | | | | | | are now separate files "postgres.h" and "postgres_fe.h", which are meant to be the primary include files for backend .c files and frontend .c files respectively. By default, only include files meant for frontend use are installed into the installation include directory. There is a new make target 'make install-all-headers' that adds the whole content of the src/include tree to the installed fileset, for use by people who want to develop server-side code without keeping the complete source tree on hand. Cleaned up a whole lot of crufty and inconsistent header inclusions.
* Remove last code that assumed xinv/xinx are large object files.Bruce Momjian2001-02-09
|
* This hasn't been used for anything for a long time...Tom Lane2001-02-09
|
* When updating a tuple containing compressed-in-line fields, do notTom Lane2001-02-09
| | | | decompress the existing fields unnecessarily.
* Add -g as synonmym for --globals-only in pg_dumpall. Add info aboutBruce Momjian2001-02-09
| | | | -c,--clean option to manual page.
* I have deleted the include of termios.h in include/port/qnx4.h.Bruce Momjian2001-02-09
| | | | | | | | | Then I recompiled pgsql and I have compiled a program with ecpg. I have removed the termios.h, and the ECHO hack. Thanks Maurizio
* Change SELECT to not trigger "BEGIN" in not autocommit mode.Hiroshi Inoue2001-02-09
|
* plpgsql's private copy of xlateSqlType was out of sync. Again. ThisTom Lane2001-02-09
| | | | | is clearly not maintainable, so dike it out in favor of calling the real version in the backend's gram.y.
* Remove no-longer-needed mklang script; now superseded by createlang.Tom Lane2001-02-09
|
* EXECUTE of a SELECT ... INTO now draws a 'not implemented' error,Tom Lane2001-02-09
| | | | | | | | rather than executing the INTO clause with non-plpgsql semantics as it was doing for the last few weeks/months. This keeps our options open for making it do the right plpgsql-ish thing in future without creating a backwards compatibility problem. There is no loss of functionality since people can get the same behavior with CREATE TABLE AS.
* Make -w the default for shut down, add -W option to specify no wait.Peter Eisentraut2001-02-08
| | | | | | | Add -l option to name log file. Set umask to 077. Proper file descriptor redirection to allow postmaster to detach from shell's process group. Add -s option to turn off informational messages.
* Fix a misuse of 'char *' declaration.Hiroshi Inoue2001-02-08
|
* When launching a child backend, take care to close file descriptors forTom Lane2001-02-08
| | | | | | | | | | any other client connections that may exist (which would only happen if another client is currently in the authentication cycle). This avoids wastage of open descriptors in a child. It might also explain peculiar behaviors like not closing connections when expected, since the kernel will probably not signal EOF as long as some other backend is randomly holding open a reference to the connection, even if the client went away long since ...
* FixBTree flag still exists and may be used to turnVadim B. Mikheev2001-02-07
| | | | runtime recovery OFF.
* Runtime btree recovery is now ON by default.Vadim B. Mikheev2001-02-07
|
* Macro for btree runtime fix.Vadim B. Mikheev2001-02-07
|
* Repair postmaster memory leakage during password authentication.Tom Lane2001-02-07
|
* Redo pgaccess' queries about views so that they will work in both 7.1Tom Lane2001-02-07
| | | | | and prior releases --- rely on pg_views view instead of direct access to pg_class and pg_rewrite.
* Not sure why this work script was in the repository ... but it doesn'tTom Lane2001-02-07
| | | | belong ...