1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-17 06:41:09 +03:00
Commit Graph

11181 Commits

Author SHA1 Message Date
3da29a8b4b Update TODO list. 2001-05-18 16:28:12 +00:00
d220d3482d Update TODO list. 2001-05-18 15:18:55 +00:00
1bb13716ec Update TODO list. 2001-05-18 14:39:54 +00:00
edf829aa1c Update TODO list. 2001-05-17 22:07:21 +00:00
a6677f0f9e Change "indices" to "indexes", per OED. 2001-05-17 21:50:18 +00:00
f000ffd28e Add -U and -W options to pg_dump and friends to support non-interactive
specification of username (like in psql).  pg_dumpall now works with
password authentication.
2001-05-17 21:12:49 +00:00
761a0bb69b Add dynamic_library_path parameter and automatic appending of shared
library extension.
2001-05-17 17:44:18 +00:00
e4f2bea7fb Add HISTORY items for 7.1.2. 2001-05-17 13:28:30 +00:00
1ef5c99c85 Fix 'make clean' with jdbc and ant by using filesets. 2001-05-17 03:22:53 +00:00
b350b52139 Update TODO list. 2001-05-17 00:10:08 +00:00
2cc332002f Update TODO list. 2001-05-17 00:08:38 +00:00
ae38a1f556 Update TODO list. 2001-05-16 20:18:25 +00:00
3848a14ed7 redo record -> undo record, Tom Lane. 2001-05-15 13:57:37 +00:00
83966889ed Update TODO list. 2001-05-14 20:30:38 +00:00
1e7b79cebc Remove unused tables pg_variable, pg_inheritproc, pg_ipl tables. Initdb
forced.
2001-05-14 20:30:21 +00:00
7d802e07a7 Fix 'set path' for csh. 2001-05-14 16:16:52 +00:00
21e3848d20 Update TODO list. 2001-05-13 02:19:58 +00:00
911a498176 Update TODO list. 2001-05-13 01:05:34 +00:00
01839df6dd Add index. Only some parts of the manual set have index entries so far... 2001-05-12 22:51:36 +00:00
b3f66d1980 Add command '\pset footer' to psql to turn off default "(x rows)" footer. 2001-05-12 19:44:46 +00:00
bbc3920fe9 PL/Python should build portably now, if you can get over the fact that
there's no shared libpython.  Test suite works as well. Also, add some
documentation.
2001-05-12 17:49:32 +00:00
7a76e29b0e no more Andy Piper tools 2001-05-11 22:27:12 +00:00
0ad9abe72e Improve discussion of %TYPE and %ROWTYPE. 2001-05-11 06:10:44 +00:00
54d9099596 Stamp CVS as 7.2. Update all interface version numbers. This is the
time to do it, not during beta because people are using this stuff in
production sometimes.
2001-05-11 01:46:33 +00:00
d4dfef1cdb Stamp for 7.1.2. Ready when you are... 2001-05-11 01:34:14 +00:00
f877cc3435 Update FAQ. 2001-05-11 01:33:01 +00:00
507a3444df Update TODO list. 2001-05-10 23:35:50 +00:00
8a4a8027eb Update TODO list. 2001-05-10 22:36:52 +00:00
a26ad8a643 Update TODO list. 2001-05-10 20:28:48 +00:00
d228278c6e Update TODO list. 2001-05-10 20:26:45 +00:00
a871e36944 Update TODO list. 2001-05-10 17:29:55 +00:00
1c6db74d80 Update TODO list. 2001-05-10 17:20:10 +00:00
3bcf19dc84 Another add. 2001-05-09 23:17:23 +00:00
fa8b0077ef Add new emails. 2001-05-09 23:15:55 +00:00
c23bc6fbb0 First cut at making indexscan cost estimates depend on correlation
between index order and table order.
2001-05-09 23:13:37 +00:00
e02033572d Update TODO list. 2001-05-09 23:11:54 +00:00
2c6373fafa Add --echo option to createlang and droplang.
from Oliver Elphick
2001-05-09 22:08:19 +00:00
a0458a91bf Update TODO list. 2001-05-09 20:40:30 +00:00
acd16eadf5 Change --with-pltcl-unknown to --enable-pltcl-unknown 2001-05-09 19:41:57 +00:00
f7659a9c18 This patch adds a new configure option --with-pltcl-unknown which
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
2001-05-09 19:19:00 +00:00
b0546a2554 Fix libpq++'s FieldSize to return int, not short. 2001-05-09 17:46:11 +00:00
a79b698adb Here's a version of my suggested diffs transplanted to 7.1 beta 5. I'm
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
2001-05-09 17:29:10 +00:00
1ef9338ab6 If it's true that the ALTER TABLE x ADD CONSTRAINT x CHECK (x) syntax is
supported in 7.1.1, here is a patch to that alter_table.sgml that documents
it.

Christopher Kings-Lynne
2001-05-09 13:27:15 +00:00
6cda3ad8fe Cause planner to make use of average-column-width statistic that is now
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 ...
2001-05-09 00:35:09 +00:00
b66a0cca57 Update runtime shared memory computations. 2001-05-08 21:09:47 +00:00
1c1c58c76c Add SET SESSION AUTHORIZATION command. 2001-05-08 21:06:43 +00:00
530dc73cd1 Remove pgadmin.sgml file. 2001-05-08 19:28:01 +00:00
3044bc4043 Add new emails to file. 2001-05-08 19:21:46 +00:00
a5b17eb280 Remove LISP manual reference. Added to web "interfaces" page. 2001-05-08 19:14:52 +00:00
aea4f6f993 Update TODO list. 2001-05-08 19:01:55 +00:00