aboutsummaryrefslogtreecommitdiff
path: root/src/backend/bootstrap/bootstrap.c
Commit message (Collapse)AuthorAge
...
* I really hope that I haven't missed anything in this one...Marc G. Fournier1998-07-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | From: t-ishii@sra.co.jp Attached are patches to enhance the multi-byte support. (patches are against 7/18 snapshot) * determine encoding at initdb/createdb rather than compile time Now initdb/createdb has an option to specify the encoding. Also, I modified the syntax of CREATE DATABASE to accept encoding option. See README.mb for more details. For this purpose I have added new column "encoding" to pg_database. Also pg_attribute and pg_class are changed to catch up the modification to pg_database. Actually I haved added pg_database_mb.h, pg_attribute_mb.h and pg_class_mb.h. These are used only when MB is enabled. The reason having separate files is I couldn't find a way to use ifdef or whatever in those files. I have to admit it looks ugly. No way. * support for PGCLIENTENCODING when issuing COPY command commands/copy.c modified. * support for SQL92 syntax "SET NAMES" See gram.y. * support for LATIN2-5 * add UNICODE regression test case * new test suite for MB New directory test/mb added. * clean up source files Basic idea is to have MB's own subdirectory for easier maintenance. These are include/mb and backend/utils/mb.
* Fix for hang after postmaster restart. Add new proc_exit andBruce Momjian1998-06-27
| | | | shmem_exit to replace exitpg().
* Remove un-needed braces around single statements.Bruce Momjian1998-06-15
|
* Remove fork()/exec() and only do fork(). Small cleanups.Bruce Momjian1998-05-29
|
* Allow cancel from client of backend query. Change some int variablesBruce Momjian1998-05-19
| | | | to bool's.
* Re-apply Darren's char2-16 removal code.Bruce Momjian1998-04-26
|
* Back out char2-char16 removal. Add later.Bruce Momjian1998-04-07
|
* The following uuencoded, gzip'd file will ...Bruce Momjian1998-03-30
| | | | | | | | | | | 1. Remove the char2, char4, char8 and char16 types from postgresql 2. Change references of char16 to name in the regression tests. 3. Rename the char16.sql regression test to name.sql. 4. Modify the regression test scripts and outputs to match up. Might require new regression.{SYSTEM} files... Darren King
* pgindent run before 6.3 release, with Thomas' requested changes.Bruce Momjian1998-02-26
|
* Goodbye register keyword. Compiler knows better.Bruce Momjian1998-02-11
|
* atttypmod now -1.Bruce Momjian1998-02-07
|
* Set attcacheoff value to -1 for all tables.Bruce Momjian1998-02-06
|
* getpid/pid cleanupBruce Momjian1998-01-25
|
* Goodbye ABORT. Hello ERROR for all errors.Bruce Momjian1998-01-07
|
* Change elog(WARN) to elog(ERROR) and elog(ABORT).Bruce Momjian1998-01-05
|
* Bracket #define sigsetjmp() to avoid redefinition. Linux starts out withThomas G. Lockhart1998-01-01
| | | | sigsetjmp as a macro, so gives compiler warning without bracketing.
* Remove tqual.h includes not needed.Bruce Momjian1997-11-24
|
* Remove all time travel stuff. Small parser cleanup.Bruce Momjian1997-11-20
|
* Remove 16 char limit on system table/index names. Rename system indexes.Bruce Momjian1997-11-17
|
* Inline memset() as MemSet().Bruce Momjian1997-09-18
|
* Used modified version of indent that understands over 100 typedefs.Bruce Momjian1997-09-08
|
* Add typdefs to pgindent run.Bruce Momjian1997-09-08
|
* Another PGINDENT run that changes variable indenting and case label ↵Bruce Momjian1997-09-08
| | | | indenting. Also static variable indenting.
* Massive commit to run PGINDENT on all *.c and *.h files.Bruce Momjian1997-09-07
|
* Make functions static where possible, enclose unused functions in #ifdef ↵Bruce Momjian1997-08-19
| | | | NOT_USED.
* Now that names are null terminated, no need to do all that NAMEDATALEN stuff.Bruce Momjian1997-08-18
|
* Remove more (void) and fix -Wall warnings.Bruce Momjian1997-08-12
|
* fix for initdb --debug core dump, from Tatsuo IshiiBruce Momjian1997-06-25
|
* Date/Time updates from Thomas...Marc G. Fournier1997-03-14
|
* From: Dan McGuirk <mcguirk@indirect.com>Marc G. Fournier1997-03-12
| | | | | | | | | | Subject: [HACKERS] linux/alpha patches These patches lay the groundwork for a Linux/Alpha port. The port doesn't actually work unless you tweak the linker to put all the pointers in the first 32 bits of the address space, but it's at least a start. It implements the test-and-set instruction in Alpha assembly, and also fixes a lot of pointer-to-integer conversions, which is probably good anyway.
* Change NEED_SIG_JMP to HAVE_SIGSETJMP in preparation for configureMarc G. Fournier1997-01-24
|
* Eliminate dupliclate definition of external variables reldesc and DataDir.Bryan Henderson1997-01-14
| | | | Some compilers recognize this error.
* pq/signal() portability patch. Also psql copy prompt fix.Bruce Momjian1996-12-26
|
* Fix bug: -D options implies -d option.Bryan Henderson1996-11-22
|
* Remove most compile-time options, add a few runtime options to make up for it.Bryan Henderson1996-11-14
| | | | | | | In particular, no more compiled-in default for PGDATA or LIBDIR. Commands that need them need either invocation options or environment variables. PGPORT default is hardcoded as 5432, but overrideable with options or environment variables.
* Add #include <unistd.h> to quiet compiler warning about missing getopt() ↵Bryan Henderson1996-11-10
| | | | declaratoin.
* Major code cleanups from D'arcy (-Wall -Werror)Marc G. Fournier1996-10-23
|
* -Wall'dMarc G. Fournier1996-10-21
|
* Added a #define NEED_SIG_JMP to config.hMarc G. Fournier1996-10-18
| | | | | Removed #ifdef's for OPENLINK_PATCH. We enable it by default, and nobody *has* to enable the functionality, but no reason to retain the "old code"
* changed missed err() change to err_out()Release_2_0_0Marc G. Fournier1996-08-17
| | | | Found/submittd by David Bennett
* Fixes:Marc G. Fournier1996-08-13
| | | | | | | | | | | | | There is a support routine in the standard 4.4BSD C library called "err()". There is also a utility routine in .../src/backend/bootstrap/bootstrap.c with the same name. Here's a patch that renames the pg95 routine to something a little more sane. As a bonus, one more bit of system-specific code leaves the system... Submitted by: "Kurt J. Lidl" <lidl@va.pubnix.com>
* Finished merging in src/backend from Dr. George's source treeMarc G. Fournier1996-07-23
|
* fix: BSDi 2.1 requires a port seperate from BSDi 2.0{.1}Marc G. Fournier1996-07-16
| | | | submitted by: Bruce Momjian (root@candle.pha.pa.us)
* fsync patch from openlinkMarc G. Fournier1996-07-15
|
* Postgres95 1.01 Distribution - Virgin SourcesPG95-1_01Marc G. Fournier1996-07-09