Age | Commit message (Collapse) | Author | |
---|---|---|---|
1999-03-30 | Add -E option | Tatsuo Ishii | |
1999-03-30 | Bug fixes and enhances to psql submitted by Masaaki Sakaida | Tatsuo Ishii | |
1. Fix problems of PAGER and \? command 2. Add -E option that shows actual queries sent by \dt and friends 3. Add version number in startup banners for psql | |||
1999-03-30 | Small cleanups. | Bruce Momjian | |
1999-03-29 | Addition to test/locale submitted by Oleg Broytmann. Comments from him: | Tatsuo Ishii | |
There are two subdirectories (ISO8859-7 and koi8-to-win1251) containing tests for Greek locale and server<=>client recoding feature (recently submitted by Tatsuo Ishii <t-ishii@sra.co.jp>; we've debugged his patches together in the field of Cyrillic support). | |||
1999-03-29 | change comparison char* and NULL to char* and '\0'. This should be | Tatsuo Ishii | |
more portable way. | |||
1999-03-29 | Modify fmgr so that internal name (compiler name) of a built-in | Tom Lane | |
function is found in prosrc field of pg_proc, not proname. This allows multiple aliases of a built-in to all be implemented as direct builtins, without needing a level of indirection through an SQL function. Replace existing SQL alias functions with builtin entries accordingly. Save a few K by not storing string names of builtin functions in fmgr's internal table (if you really want 'em, get 'em from pg_proc...). Update opr_sanity with a few more cross-checks. | |||
1999-03-28 | 1. Vacuum is updated for MVCC. | Vadim B. Mikheev | |
2. Much faster btree tuples deletion in the case when first on page index tuple is deleted (no movement to the left page(s)). 3. Remember blkno of new root page in BTPageOpaque of left/right siblings when root page is splitted. | |||
1999-03-28 | Expanded opr_sanity test to look at pg_proc and other | Tom Lane | |
related tables. | |||
1999-03-28 | New regression test to cross-check pg_type, pg_class, | Tom Lane | |
and related tables. | |||
1999-03-28 | Clean up various minor irregularities detected by type_sanity | Tom Lane | |
and newly expanded opr_sanity tests. | |||
1999-03-28 | Remove pg_attribute_check.sql: these checks merged into new | Tom Lane | |
regress test 'type_sanity'. | |||
1999-03-28 | Fix bogus function signature for areajoinsel. | Tom Lane | |
It still doesn't do anything, but at least now it does nothing correctly. | |||
1999-03-27 | Delete unused system table pg_parg. | Tom Lane | |
1999-03-26 | No longer need this file here; superseded by oidjoins regress test. | Tom Lane | |
1999-03-26 | Add results of findoidjoins as a standard regression test. | Tom Lane | |
1999-03-26 | Remove a bunch of dead entries exposed by findoidjoins crosschecks. | Tom Lane | |
Apparently, whatever these things used to link to got recycled into something else ... but the dependent entries didn't. | |||
1999-03-25 | Revise memutils.h to use alignment information gathered by | Tom Lane | |
configure, instead of having a bunch of crufty platform-specific guesses. | |||
1999-03-25 | Fix multi-byte+locale problem | Tatsuo Ishii | |
1999-03-25 | Clean up att_align calculations so that XXXALIGN macros | Tom Lane | |
need not be bogus. | |||
1999-03-24 | *** empty log message *** | Michael Meskes | |
1999-03-24 | Add KOI8/WIN/ALT support | Tatsuo Ishii | |
1999-03-24 | These small utilities are for generating internal tables from | Tatsuo Ishii | |
rcode encoding tables. | |||
1999-03-24 | Add KOI8/WIN/ALT to set client_encoding command help | Tatsuo Ishii | |
1999-03-24 | Fix typo. #ifdef MUTIBYTE --> #ifdef MULTIBYTE | Tatsuo Ishii | |
1999-03-24 | Add KOI8/WIN/ALT to the multi-byte encoding selections | Tatsuo Ishii | |
1999-03-24 | Add KOI8/WIN/ALT to the multi-byte encoding selections | Tatsuo Ishii | |
1999-03-24 | Add KOI8/WIN/ALT to the multi-byte encoding selections | Tatsuo Ishii | |
1999-03-23 | Remove Tee code, move to _deadcode. | Bruce Momjian | |
1999-03-23 | cleanups | Bruce Momjian | |
1999-03-22 | Hi, | Bruce Momjian | |
I have solved some problems with dynamic loading on NT. It is possible to run succesfully both trigger and plpgsql regression tests. The patch is in the included file "diff". Dan | |||
1999-03-22 | Add % to b_expr. | Bruce Momjian | |
1999-03-22 | Cleanup of NULL in inet types. | Bruce Momjian | |
1999-03-21 | Correct some comments, fix a small memory wastage when datatype | Tom Lane | |
is pass-by-value. | |||
1999-03-21 | This patch fixes the bug that made it impossible to grant permissions to | Bruce Momjian | |
a user such as "www-data". Oliver | |||
1999-03-21 | Add .cvsignore file so cvs doesn't complain if you have lex/yacc | Tom Lane | |
output files laying about. | |||
1999-03-21 | cleanup | Bruce Momjian | |
1999-03-21 | Ah, *now* I understand: plpgsql lexer must be generated with flex -l ... | Tom Lane | |
1999-03-21 | Fix for %4 and 4%. | Bruce Momjian | |
1999-03-21 | Hmm, it seems some versions of flex declare yytext as extern char[] | Tom Lane | |
but others declare it as extern char *. gcc complains (quite rightly too). Worked around it by rearranging the order of inclusions so that we don't have to explicitly declare yytext; this should work with either variant. | |||
1999-03-20 | *** empty log message *** | Michael Meskes | |
1999-03-20 | Remove yacc/lex output files from CVS repository. | Tom Lane | |
1999-03-20 | Remove yacc/lex output files from CVS repository. | Tom Lane | |
1999-03-20 | Clean up build procedure: do not keep raw lex/yacc files around, | Tom Lane | |
only the edited ones. | |||
1999-03-20 | make clean should remove lex.yy.c | Tom Lane | |
1999-03-20 | Script for preparing derived files during tarball construction. | Tom Lane | |
1999-03-20 | Reverse out pfree agg part of patch from Erik Riedel. | Bruce Momjian | |
1999-03-20 | cleanup | Bruce Momjian | |
1999-03-20 | cleanup | Bruce Momjian | |
1999-03-20 | Fix for aggregate memory leaks from Erik Riedel. | Bruce Momjian | |
1999-03-19 | Fix shift/reduce for NULL = Var. | Bruce Momjian | |