summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2002-07-17Done, not sure when, reported by Neil Conway:Bruce Momjian
> * -Report failure to find readline or zlib at end of configure run
2002-07-17Improve getopt_long search, per Peter:Bruce Momjian
AC_SEARCH_LIBS(getopt_long, [getopt])
2002-07-16Add more dependency insertions --- this completes the basic pg_dependTom Lane
functionality. Of note: dropping a table that has a SERIAL column defined now drops the associated sequence automatically.
2002-07-16fixed bug in support for timestamp without time zone reported by Yuva ↵Barry Lind
Chandolu (ychandolu@ebates.com)
2002-07-16Oops, sometimes strtol isn't called in pg_atoi, so we do need that badpBruce Momjian
check.
2002-07-16Fix tid to in/out as unsigned.Bruce Momjian
2002-07-16Add initdb code to set up initial contents of pg_depend, pinning allTom Lane
objects created during initdb (except for the system views, which I think do not need to be pinned).
2002-07-16> pgsql-bugs@postgresql.org wrote:Bruce Momjian
> > David Clark (dclarknospam@opsi.co.za) reports a bug with a severity > > Table 3-7 SQL Literal escaped octets shows the input escape > > representation for a single quote as '\\'' , but the third paragraph > > below table 3-8 SQL Output Escaped Octets says that the single quote > > must be input as '\'' > > Nice catch. '\'' is correct as shown in the example in Table 3-7. > > > > > Also in the same paragraph mentioned above it says input for the > > single quote must be '\'' (or '\\134') shouldn't this be (or '\\047') > > Also a bug. Should be '\\047', as you pointed out. > Here's a patch to fix the binary string doc errors. Joe Conway
2002-07-16Add conversion procs for CREATE CONVERSIONTatsuo Ishii
2002-07-16Fix typoTatsuo Ishii
2002-07-16Add FindDefaultConversionProcTatsuo Ishii
2002-07-16Add code to extract dependencies from an expression tree, and use itTom 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-16Add DLLINIT mention in port/Makefile.Bruce Momjian
2002-07-16Move few remaining src/utils files to backend/port so everything is inBruce Momjian
one place. Everything may be moved to src/utils eventually. Add DLLINIT variable to simplify makfiles.
2002-07-16Add mention of TOAST storage for character columns.Bruce Momjian
2002-07-16Mark 'line' as 'not implemented' in SGML and psql \dT, per ThomasBruce Momjian
Lockhart. initdb not forced.
2002-07-16This fixes 2 inaccuracies in the recently added SQL99 feature list docs.Bruce Momjian
UNIQUE and DISTINCT predicates are both listed as implemented -- AFAIK, neither is. I also included another trivial patch which adds the default location of the DSSSL stylesheets on my system (Debian unstable, docbook-dsssl 1.76) to the list of paths that configure looks for. Neil Conway
2002-07-16Add comment for isbn,issn data type, from Pete St. OngeBruce Momjian
2002-07-15Item not needed:Bruce Momjian
< * Use our own getopt() for FreeBSD/OpenBSD to allow --xxx flags (Bruce)
2002-07-15Remove indenting of Makefile comments, per Peter.\Bruce Momjian
2002-07-15Remove 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-15Add search for libgetopt.a in hopes of finding getopt_long().Bruce Momjian
2002-07-15Remove certain Makefile dependencies by using full pathnames inBruce Momjian
configure.in.
2002-07-15Use the dependency mechanism to manage column defaults. We need thisTom Lane
so that dependencies in default expressions (on operators, functions, etc) can be expressed properly.
2002-07-15Fix make_ctags for exhuberant tags.Bruce Momjian
2002-07-15Fix a bug about the handling of '.' in parse.c.Hiroshi Inoue
2002-07-15Improve relcache.c error reporting for the next guy who has to debugBruce Momjian
this thing.
2002-07-15Fix \? and \pset pager handling. \? wasn't honoring pager before.Bruce Momjian
2002-07-14Add 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-14Remove no-longer-appropriate notes about lack of CASCADE/RESTRICT behavior.Tom Lane
2002-07-14In DeleteAttributeTuples, use a single indexscan instead of the multipleTom Lane
scans that will most likely be caused by SearchSysCache probes. Also, share some code between index deletion and table deletion.
2002-07-13Fix testing of partial-index predicates to work correctly in cases whereTom Lane
varno of index's relation is not 1. This embarrassing oversight pointed out by Dmitry Tkach 12-Jul-02.
2002-07-13Mark as done, per Rod:Bruce Momjian
> o -Add ALTER TABLE DROP non-CHECK CONSTRAINT > * -Allow psql \d to show foreign keys > * -Auto-destroy sequence on DROP of table with SERIAL; perhaps a separate > * -Prevent column dropping if column is used by foreign key > * -Automatically drop constraints/functions when object is dropped > * -Make foreign key constraints clearer in dump file > * -Make foreign keys easier to identify
2002-07-13Both done:Bruce Momjian
o -Add SET or BEGIN timeout parameter to cancel query > * -Add pg_depend table for dependency recording; use sysrelid, oid,
2002-07-13Add SET statement_timeout capability. Timeout is in ms. A value ofBruce Momjian
zero turns off the timer.
2002-07-13Re-add -I documentation, per Tom.Bruce Momjian
2002-07-12Second 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-12Changed 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-12An improvement of User Interface(Setup dialog) by Dave Page.Hiroshi Inoue
2002-07-121) Fix a memory leak in use declare/fetch mode.Hiroshi Inoue
2) Change default build mode to multibyte(Windows).
2002-07-11Not a valid item:Bruce Momjian
< * Add version file format stamp to heap and other table types
2002-07-11Remove duplicate:Bruce Momjian
< * Use BlockNumber rather than int where appropriate
2002-07-11Change error messages ExecAppend->ExecInsert and ExecReplace->ExecUpdateBruce Momjian
as discussed on hackers.
2002-07-11Remove references to pre-7.1; too old.Bruce Momjian
2002-07-11Update FAQ.Bruce Momjian
2002-07-11Add 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-11Done, according to Rod Taylor:Bruce Momjian
> * -Add ALTER TRIGGER ... RENAME
2002-07-11Fix getopt flags. Man thing thing was messed up.Bruce Momjian
2002-07-11Fix another --help typo in pg_restore.Bruce Momjian
2002-07-11Make NAMEDATALEN changeable at compile time.Hiroshi Inoue