aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
* Move disabled message up to a higher makefile.Bruce Momjian2001-05-10
|
* First cut at making indexscan cost estimates depend on correlationTom Lane2001-05-09
| | | | between index order and table order.
* This directory contains a module that implements the "Metaphone" code asBruce Momjian2001-05-09
| | | | | | | | | | | | | a PostgreSQL user-defined function. The Metaphone system is a method of matching similar sounding names (or any words) to the same code. Metaphone was invented by Lawrence Philips as an improvement to the popular name-hashing routine, Soundex. This metaphone code is from Michael Kuhn, and is detailed at http://aspell.sourceforge.net/metaphone/metaphone-kuhn.txt Joel Burton
* Add --echo option to createlang and droplang.Peter Eisentraut2001-05-09
| | | | from Oliver Elphick
* Wow, I am getting good at this Makefile stuff. Peter may be OK with it.Bruce Momjian2001-05-09
|
* I think I got the pltcl Makefile unknown rules working properly.Bruce Momjian2001-05-09
|
* I have modifed heap.c so that it won't automatically generate duplicateBruce Momjian2001-05-09
| | | | | | | | | | | | | | constraint names. > > A reasonable interpretation of DROP CONSTRAINT "foo" is to drop *all* > > constraints named "foo" on the target table. > > Then it should probably be a good thing to avoid the automatic > generation of > duplicate names? I might take a look at that, actually... > Christopher Kings-Lynne
* that's just me again, here's normal patch for KOI8_U toBruce Momjian2001-05-09
| | | | | | | | | | | | | jdbc/Connection.java Andy P.S. in Connection.java if encoding=="WIN" then dbEncoding is set to "Cp1252". What if it's Cyrillic "WIN"? Than it should be "Cp1251". Is there any way to fix that without making different "WIN" encodings in PostgreSQL? Andy Rysin
* This patch should catch cases where the typesBruce Momjian2001-05-09
| | | | | | | | in referencing and referenced columns of an fk constraint aren't comparable using '=' at constraint definition time rather than insert/update time. Stephan Szabo
* More cleanups to generate tcl unknown from Makefile.Bruce Momjian2001-05-09
|
* Make tcl unknown configure from Makefile, not configure.Bruce Momjian2001-05-09
|
* More --enable-pltcl-unknown renames.Bruce Momjian2001-05-09
|
* Change to enable_pltcl_unknown mention.Bruce Momjian2001-05-09
|
* Add TODO file.Bruce Momjian2001-05-09
|
* Add plpython code.Bruce Momjian2001-05-09
|
* Noticed a small bug in the code. Probably been there for some time. NoteBruce Momjian2001-05-09
| | | | | | | that the original code would consider things like UNIX domain sockets are regular files. Gavin Sherry
* This patch adds a new configure option --with-pltcl-unknown whichBruce Momjian2001-05-09
| | | | | | | | | | | | | | | | | | | | | enables pltcl unknown support. Also it adds substituting of tclsh with tclsh that was by configure in pltcl_*mod scripts. For example, On freebsd, tclsh can be called tclsh8.2 or tclsh8.3 depending on installed version of Tcl. After patching files src/pl/tcl/modules/pltcl_listmod src/pl/tcl/modules/pltcl_loadmod src/pl/tcl/modules/pltcl_delmod must be renamed(copied,repocopied) to src/pl/tcl/modules/pltcl_listmod.in src/pl/tcl/modules/pltcl_loadmod.in src/pl/tcl/modules/pltcl_delmod.in seva@sevasoft.kiev.ua
* Right-align \du user-id.Bruce Momjian2001-05-09
|
* Fix memory leak in new psql \du code.Bruce Momjian2001-05-09
|
* Fix libpq++'s FieldSize to return int, not short.Bruce Momjian2001-05-09
|
* Add mention of getLength returning short.Bruce Momjian2001-05-09
|
* Here's a version of my suggested diffs transplanted to 7.1 beta 5. I'mBruce Momjian2001-05-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | still looking at the best way to integrate Tom Vijlbrief's fixes (insofar as they're still needed); would 7.2 be a suitable time for incompatible API changes? Jeroen Changes: (*) Introduced bool, true, false (replacing some int, 1, 0) (*) Made some member functions const (*) Documented GetIsNull() (*) Marked DisplayTuples() and PrintTuples() as obsolescent; fixed possible portability problem (assumed that NULL pointer equals all-zero bit pattern) (*) PrintTuples(): renamed width parameter to fillAlign to conform with other usage; fixed memory leak and compile issue w.r.t. field separator (should also slightly improve performance) (*) Fixed some minor compilation issues (*) Moved "using namespace std;" out of headers, where they didn't belong; used new (temporary) preprocessor macro PGSTD to do this (*) Made ToString() static, removed unneeded memset(), made buffer size adapt to sizeof(int) (*) Made some constructors explicit (*) Changed some const std::string & parameters to plain std::string (*) Marked PgCursor::Cursor(std::string) as obsolescent (setter with same name as getter--bad style) (*) Renamed some paramaters previously named "string" (*) Introduced size_type typedef for number of tuples in result set (*) PgTransaction now supports re-opening after closing, and aborts if not explicitly committed prior to destruction J. T. Vermeulen
* Use ColId instead of Ident for SET SESSION AUTHORIZATION.Peter Eisentraut2001-05-09
|
* Mention new jdbc mailing list instead of interfaces list.Bruce Momjian2001-05-09
|
* Cause planner to make use of average-column-width statistic that is nowTom Lane2001-05-09
| | | | | | | | collected by ANALYZE. Also, add some modest amount of intelligence to guesses that are used for varlena columns in the absence of any ANALYZE statistics. The 'width' reported by EXPLAIN is finally something less than totally bogus for varlena columns ... and, in consequence, hashjoin estimating should be a little better ...
* Add SET SESSION AUTHORIZATION command.Peter Eisentraut2001-05-08
|
* Mention SHELL usage in initdb.Bruce Momjian2001-05-08
|
* Append and SubqueryScan nodes were not passing changed-parameter signals downTom Lane2001-05-08
| | | | | | | | | to their children, leading to misbehavior if they had any children that paid attention to chgParam (most plan node types don't). Append's bug has been there a long time, but nobody had noticed because it used to be difficult to create a query where an Append would be used below the top level of a plan; so there were never any parameters getting passed down. SubqueryScan is new in 7.1 ... and I'd modeled its behavior on Append :-(
* Need to factor out strdup.o for separate treatment since it's in aPeter Eisentraut2001-05-08
| | | | | different directory. This makes dependency tracking work and copes with compilers that don't suport -c and -o together.
* Small cleanup.Bruce Momjian2001-05-08
|
* Add newlines around debug output in optimizer showing total costs.Bruce Momjian2001-05-08
|
* Run pgindent on ODBC code only, to reformat new comments.Bruce Momjian2001-05-08
|
* ODBC source code cleanup patch. Should match rest of PostgreSQL code better.Bruce Momjian2001-05-08
|
* Allow SHELL in Makefile.* to control initdb.Bruce Momjian2001-05-08
|
* Fix paren typo in java.Bruce Momjian2001-05-08
|
* Un-break exec_move_row() for case that a NULL tuple and tupdesc areTom Lane2001-05-08
| | | | | passed, which occurs when no rows are retrieved by a SELECT. Mea maxima culpa ... I should have caught this.
* Fix comment in file about 2*max_connections.Bruce Momjian2001-05-07
|
* Shared library and GCC support for SCO OpenServer.Peter Eisentraut2001-05-07
|
* Fix remaining RI permission problems (cascaded update/delete, restrict,Peter Eisentraut2001-05-07
| | | | set null/default).
* Add \cd command to psql.Peter Eisentraut2001-05-07
|
* > Occasionally and without warning I get this from my daily vacuumBruce Momjian2001-05-07
| | | | | | | | | | | | | > cronjob: > NOTICE: RegisterSharedInvalid: SI buffer overflow > NOTICE: InvalidateSharedInvalid: cache state reset > I don't understand what these mean. Should I be concerned about them > and what do they signify? No real need to worry. Those should've been downgraded to DEBUG-level messages a release or two back, but nobody bothered... Tom Lane
* Rewrite of planner statistics-gathering code. ANALYZE is now available asTom Lane2001-05-07
| | | | | | | | | | | | | | | | | a separate statement (though it can still be invoked as part of VACUUM, too). pg_statistic redesigned to be more flexible about what statistics are stored. ANALYZE now collects a list of several of the most common values, not just one, plus a histogram (not just the min and max values). Random sampling is used to make the process reasonably fast even on very large tables. The number of values and histogram bins collected is now user-settable via an ALTER TABLE command. There is more still to do; the new stats are not being used everywhere they could be in the planner. But the remaining changes for this project should be localized, and the behavior is already better than before. A not-very-related change is that sorting now makes use of btree comparison routines if it can find one, rather than invoking '<' twice.
* Fix collateral damage from previous (rev 1.49) patch.Peter Eisentraut2001-05-06
|
* Allow 'psql -f -' to read from standard input.Peter Eisentraut2001-05-06
|
* Make prompt customization work with changeable Unix socket location.Peter Eisentraut2001-05-06
|
* Makefile should have automatic dependency for parser.o too, if it'sTom Lane2001-05-04
| | | | going to have any at all.
* Seems like we should not hold off cancel/die interrupts while we areTom Lane2001-05-04
| | | | | running deferred triggers. They are really part of the regular transaction, and they could take awhile.
* Consolidate several near-identical uses of mktime() into a singleTom Lane2001-05-03
| | | | | | | | | routine DetermineLocalTimeZone(). In that routine, be more wary of broken mktime() implementations than the original code was: don't allow mktime to change the already-set y/m/d/h/m/s information, and don't use tm_gmtoff if mktime failed. Possibly this will resolve some of the complaints we've been hearing from users of Middle Eastern timezones on RedHat.
* BTW it does not add encodign it just patches existing one (KOI8) toBruce Momjian2001-05-03
| | | | | | | support two - KOI8-R and KOI8-U (latter is superset of the former if not to take to the account pseudographics) Andy Rysin
* Permission checking wasn't quite right for insert/update/delete rules,Tom Lane2001-05-03
| | | | either :-(.