Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-07-16 | fixed bug in support for timestamp without time zone reported by Yuva ↵ | Barry Lind | |
Chandolu (ychandolu@ebates.com) | |||
2002-07-16 | Oops, sometimes strtol isn't called in pg_atoi, so we do need that badp | Bruce Momjian | |
check. | |||
2002-07-16 | Fix tid to in/out as unsigned. | Bruce Momjian | |
2002-07-16 | Add initdb code to set up initial contents of pg_depend, pinning all | Tom Lane | |
objects created during initdb (except for the system views, which I think do not need to be pinned). | |||
2002-07-16 | Add conversion procs for CREATE CONVERSION | Tatsuo Ishii | |
2002-07-16 | Fix typo | Tatsuo Ishii | |
2002-07-16 | Add FindDefaultConversionProc | Tatsuo Ishii | |
2002-07-16 | Add code to extract dependencies from an expression tree, and use it | Tom Lane | |
to build dependencies for rules, constraint expressions, and default expressions. Repair some problems in the original design of recursiveDeletion() exposed by more complex dependency sets. Fix regression tests that were deleting things in illegal sequences. | |||
2002-07-16 | Add DLLINIT mention in port/Makefile. | Bruce Momjian | |
2002-07-16 | Move few remaining src/utils files to backend/port so everything is in | Bruce Momjian | |
one place. Everything may be moved to src/utils eventually. Add DLLINIT variable to simplify makfiles. | |||
2002-07-16 | Mark 'line' as 'not implemented' in SGML and psql \dT, per Thomas | Bruce Momjian | |
Lockhart. initdb not forced. | |||
2002-07-15 | Remove indenting of Makefile comments, per Peter.\ | Bruce Momjian | |
2002-07-15 | Remove utils/getopt.c file, not needed, it only allowed "--flag" | Bruce Momjian | |
warnings, and we now look for getopt_long in libgetopt.a. | |||
2002-07-15 | Remove certain Makefile dependencies by using full pathnames in | Bruce Momjian | |
configure.in. | |||
2002-07-15 | Use the dependency mechanism to manage column defaults. We need this | Tom Lane | |
so that dependencies in default expressions (on operators, functions, etc) can be expressed properly. | |||
2002-07-15 | Fix make_ctags for exhuberant tags. | Bruce Momjian | |
2002-07-15 | Fix a bug about the handling of '.' in parse.c. | Hiroshi Inoue | |
2002-07-15 | Improve relcache.c error reporting for the next guy who has to debug | Bruce Momjian | |
this thing. | |||
2002-07-15 | Fix \? and \pset pager handling. \? wasn't honoring pager before. | Bruce Momjian | |
2002-07-14 | Add COMMENT ON CONSTRAINT facility (from Rod Taylor's pg_constraint patch). | Tom Lane | |
Fix comment.c to not depend on parser token values, per discussion awhile back. | |||
2002-07-14 | In DeleteAttributeTuples, use a single indexscan instead of the multiple | Tom Lane | |
scans that will most likely be caused by SearchSysCache probes. Also, share some code between index deletion and table deletion. | |||
2002-07-13 | Fix testing of partial-index predicates to work correctly in cases where | Tom Lane | |
varno of index's relation is not 1. This embarrassing oversight pointed out by Dmitry Tkach 12-Jul-02. | |||
2002-07-13 | Add SET statement_timeout capability. Timeout is in ms. A value of | Bruce Momjian | |
zero turns off the timer. | |||
2002-07-12 | Second phase of committing Rod Taylor's pg_depend/pg_constraint patch. | Tom Lane | |
pg_relcheck is gone; CHECK, UNIQUE, PRIMARY KEY, and FOREIGN KEY constraints all have real live entries in pg_constraint. pg_depend exists, and RESTRICT/CASCADE options work on most kinds of DROP; however, pg_depend is not yet very well populated with dependencies. (Most of the ones that are present at this point just replace formerly hardwired associations, such as the implicit drop of a relation's pg_type entry when the relation is dropped.) Need to add more logic to create dependency entries, improve pg_dump to dump constraints in place of indexes and triggers, and add some regression tests. | |||
2002-07-12 | Changed getCrossReference to return information about each composite key ↵ | Dave Cramer | |
seperately It used to return them as a,b in one row, and now returns a in one row, and b in one row | |||
2002-07-12 | An improvement of User Interface(Setup dialog) by Dave Page. | Hiroshi Inoue | |
2002-07-12 | 1) Fix a memory leak in use declare/fetch mode. | Hiroshi Inoue | |
2) Change default build mode to multibyte(Windows). | |||
2002-07-11 | Change error messages ExecAppend->ExecInsert and ExecReplace->ExecUpdate | Bruce Momjian | |
as discussed on hackers. | |||
2002-07-11 | Add new CREATE CONVERSION/DROP CONVERSION command. | Tatsuo Ishii | |
This is the first cut toward CREATE CONVERSION/DROP CONVERSION implementaion. The commands can now add/remove tuples to the new pg_conversion system catalog, but that's all. Still need work to make them actually working. Documentations, regression tests also need work. | |||
2002-07-11 | Fix getopt flags. Man thing thing was messed up. | Bruce Momjian | |
2002-07-11 | Fix another --help typo in pg_restore. | Bruce Momjian | |
2002-07-11 | Make NAMEDATALEN changeable at compile time. | Hiroshi Inoue | |
2002-07-10 | fix bug in getTime() with fractional seconds reported by Laurette Cisneros ↵ | Barry Lind | |
(laurette@nextbus.com) | |||
2002-07-09 | Oops, proper initialization for domainTypMod was none at all, not 0. | Bruce Momjian | |
2002-07-09 | Fix compiler warning: | Bruce Momjian | |
int32 domainTypMod = NULL; should be: int32 domainTypMod = 0; | |||
2002-07-08 | Fix case syntax for freebsd template. | Bruce Momjian | |
2002-07-08 | Fix typo in xl_heaptid comment | Bruce Momjian | |
Manfred Koizar | |||
2002-07-07 | Move CXX platform-specific stuff into template files. | Bruce Momjian | |
2002-07-07 | Convert expr to case, for Peter E. | Bruce Momjian | |
2002-07-06 | I've fixed up the way domain constraints (not null and type length) | Bruce Momjian | |
are managed as per request. Moved from merging with table attributes to applying themselves during coerce_type() and coerce_type_typmod. Regression tests altered to test the cast() scenarios. Rod Taylor | |||
2002-07-06 | Add comments about sharing. | Bruce Momjian | |
2002-07-06 | Move simple_prompt() into its own file to be shared with psql and pg_dump. | Bruce Momjian | |
2002-07-05 | fixed bug reported by Michael, Dietrich (mdt@emdete.de) where a large object ↵ | Barry Lind | |
handle was being used after the end of the transaction and thus resulting in an error. | |||
2002-07-05 | Fix a bug reported by Zhou Han. | Hiroshi Inoue | |
2002-07-04 | Fix compile error in assert coded added by new DISTINCT ON patch. | Bruce Momjian | |
2002-07-04 | More clearly document in pg_dump when we are dealing with an object name | Bruce Momjian | |
as it appears in the schema dump, and index tags. | |||
2002-07-04 | Implement the IS DISTINCT FROM operator per SQL99. | Thomas G. Lockhart | |
Reused the Expr node to hold DISTINCT which strongly resembles the existing OP info. Define DISTINCT_EXPR which strongly resembles the existing OPER_EXPR opType, but with handling for NULLs required by SQL99. We have explicit support for single-element DISTINCT comparisons all the way through to the executor. But, multi-element DISTINCTs are handled by expanding into a comparison tree in gram.y as is done for other row comparisons. Per discussions, it might be desirable to move this into one or more purpose-built nodes to be handled in the backend. Define the optional ROW keyword and token per SQL99. This allows single-element row constructs, which were formerly disallowed due to shift/reduce conflicts with parenthesized a_expr clauses. Define the SQL99 TREAT() function. Currently, use as a synonym for CAST(). | |||
2002-07-04 | Document function args are required for pg_restore -P. | Bruce Momjian | |
Fix pg_dump to not quote the function name in the storage tag. Fix pg_dump so GRANT/REVOKE(ACL) tag entries are not quoted, for consistency. Fix pg_restore to properly handle quotes and some spaces in -P. | |||
2002-07-03 | Update FreeBSD template to properly compile c++ on alpha. | Bruce Momjian | |
2002-07-03 | Add missing pgaccess copyright file, same as ours. | Bruce Momjian | |