aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Change configure check to use $YACC, per Tom.Bruce Momjian2003-06-07
|
* Remove kerberos mention that doesn't support our software, from Peter.Bruce Momjian2003-06-07
|
* Update German FAQ, from Ian Barwick.Bruce Momjian2003-06-06
|
* Update FAQ from Ian Barwick.Bruce Momjian2003-06-06
|
* Add -DFRONTEND for non-MinGW Win32 ports.Bruce Momjian2003-06-06
|
* Add:Bruce Momjian2003-06-06
| | | | > o Have COPY return number of rows loaded/unloaded
* Add configure warning to check for bison version >= 1.875.Bruce Momjian2003-06-06
|
* Add mention of two auth_mod kerberos projects, from Daniel KourilBruce Momjian2003-06-06
|
* Add defense in assign_session_authorization() against trying to doTom Lane2003-06-06
| | | | | | catalog lookups when not in a transaction. This prevents bizarre failures if someone tries to set a value for session_authorization in postgresql.conf. Per report from Fernando Nasser.
* Add:Bruce Momjian2003-06-06
| | | | > * Add checks for fclose() failure
* Remove mention of ALTER USER able to remove passwords.Bruce Momjian2003-06-06
|
* Implement outer-level aggregates to conform to the SQL spec, withTom Lane2003-06-06
| | | | | | | | extensions to support our historical behavior. An aggregate belongs to the closest query level of any of the variables in its argument, or the current query level if there are no variables (e.g., COUNT(*)). The implementation involves adding an agglevelsup field to Aggref, and treating outer aggregates like outer variables at planning time.
* Update documentation build instructions.Peter Eisentraut2003-06-06
|
* Information schema views about functionsPeter Eisentraut2003-06-05
|
* Support for Intel compiler on LinuxPeter Eisentraut2003-06-05
|
* Make the world at least marginally safe for usernames with embedded spaces.Tom Lane2003-06-02
| | | | Per recent gripe.
* In src/include/mb/pg_wchar.h we have:Bruce Momjian2003-06-02
| | | | | | | | | | | | | | | | | | | | | | #define PG_ENCODING_BE_LAST PG_ISO_8859_8 #define PG_ENCODING_FE_LAST PG_WIN1256 but the last client encoding in the enum list is actually PG_GB18030 and it seems that #define PG_ENCODING_IS_CLIEN_ONLY(_enc) \ (((_enc) > PG_ENCODING_BE_LAST && (_enc) <= PG_ENCODING_FE_LAST) can never be true. I think the define should read #define PG_ENCODING_FE_LAST PG_GB18030 On the other hand, perhaps no-one cares, because PG_ENCODING_IS_CLIEN_ONLY is never used. -- Oliver Elphick Oliver.Elphick@lfix.co.uk
* Add:Bruce Momjian2003-06-02
| | | | > * Allow logging of only data definition(DDL), or DDL and modification statements
* Add:Bruce Momjian2003-06-02
| | | | | | | | | | > * Allow a single index to index multiple tables (for inheritance and subtables) 408a410 > * Improve the planner to use CHECK constraints to prune the plan (for subtables) 418a421 > * Allow partitioning of table into multiple subtables 419a423 > T
* Add data partitioning idea to tablespaces discussion.Bruce Momjian2003-06-02
|
* Add Turkish FAQ, from Devrim GUNDUZ.Bruce Momjian2003-06-02
|
* Add:Bruce Momjian2003-06-02
| | | | > * Allow SET CONSTRAINTS to be qualified by schema/table
* Update Russian FAQ, from Viktor VislobokovBruce Momjian2003-06-02
|
* Fixed segfault in forward definition parsing.Michael Meskes2003-06-02
|
* Update URL to point to proper location.Bruce Momjian2003-06-02
|
* Update Emacs settings, from Andrew DunstanBruce Momjian2003-06-02
|
* Add:Bruce Momjian2003-06-01
| | | | > * Add config variable to prevent auto-adding missing FROM-clause tables
* markTargetListOrigin neglected to handle outer-scope Vars properly;Tom Lane2003-05-31
| | | | per report from Joe Conway.
* Add:Bruce Momjian2003-05-31
| | | | > * Prevent whole-row references from leaking memory, e.g. SELECT COUNT(tab.*)
* Add:Bruce Momjian2003-05-31
| | | | > * Consider using MVCC to cache count(*) queries with no WHERE clause
* Add item about sending success stories to http://advocacy.postgresql.org.Bruce Momjian2003-05-31
|
* Cause pg_dumpall to support the -a, -s, -x options of pg_dump.Tom Lane2003-05-30
|
* Cause pg_dumpall to include GRANT/REVOKE for database-level permissionsTom Lane2003-05-30
| | | | in its output. Make it work with server versions back to 7.0, too.
* Small performance improvement for hash joins and hash aggregation:Tom Lane2003-05-30
| | | | | | | when the plan is ReScanned, we don't have to rebuild the hash table if there is no parameter change for its child node. This idea has been used for a long time in Sort and Material nodes, but was not in the hash code till now.
* Create a real prototype function for describe.Michael Meskes2003-05-30
|
* Sync and some minor cleanup/fixing work plus an EXEC SQL DESCRIBE prototype.Michael Meskes2003-05-30
|
* Ensure that in all flex lexers that are part of the backend, aTom Lane2003-05-29
| | | | | | | yy_fatal_error() call results in elog(ERROR) not exit(). This was already fixed in the main lexer and plpgsql, but extend same technique to all the other dot-l files. Also, on review of the possible calls to yy_fatal_error(), it seems safe to use elog(ERROR) not elog(FATAL).
* one more change to correctly support the removeall of autocommitBarry Lind2003-05-29
|
* Adopt latest bison's spelling of 'syntax error' rather than 'parse error'Tom Lane2003-05-29
| | | | | for grammar-detected problems. Revert Makefile hack that kept it looking like the pre-bison-1.875 output.
* Don't explicitly close() the session socket during backend exit; insteadTom Lane2003-05-29
| | | | | | leave it for the kernel to do after the process dies. This allows clients to wait for the backend to exit if they wish (after sending X message, wait till EOF is detected on the socket).
* AFAICT, none of our shared libraries are anywhere near big enough toTom Lane2003-05-29
| | | | need -fPIC on HPPA. Reduce to -fpic.
* Changed variable parsing so struct[n].attr works.Michael Meskes2003-05-29
|
* Parse forward definiton of structs.Michael Meskes2003-05-29
|
* Applied patch from Fernando Nasser to fix up small type errorBarry Lind2003-05-29
|
* Applied patch from Fernando Nasser to improve buffer sizes to avoid ↵Barry Lind2003-05-29
| | | | unnecessary resizing.
* clean up warnings produced by EclipseBarry Lind2003-05-29
|
* Adding .cvsignore files for Eclipse IDEBarry Lind2003-05-29
|
* Up the build number to reflect the changes for V3 protocol supportBarry Lind2003-05-29
|
* Initial attempt to integrate in V3 protocol support. This is still a work inBarry Lind2003-05-29
| | | | | | | | | | | | | | | | | | | | | | progress, although all RTs pass using the V3 protocol on a 7.4 database and also pass using the V2 protocol on a 7.3 database. SSL support is known not to work. Modified Files: jdbc/org/postgresql/PGConnection.java jdbc/org/postgresql/errors.properties jdbc/org/postgresql/core/BaseConnection.java jdbc/org/postgresql/core/Encoding.java jdbc/org/postgresql/core/Field.java jdbc/org/postgresql/core/PGStream.java jdbc/org/postgresql/core/QueryExecutor.java jdbc/org/postgresql/core/StartupPacket.java jdbc/org/postgresql/fastpath/Fastpath.java jdbc/org/postgresql/fastpath/FastpathArg.java jdbc/org/postgresql/jdbc1/AbstractJdbc1Connection.java jdbc/org/postgresql/test/jdbc2/BlobTest.java jdbc/org/postgresql/test/jdbc2/CallableStmtTest.java jdbc/org/postgresql/test/jdbc2/MiscTest.java jdbc/org/postgresql/test/jdbc3/Jdbc3TestSuite.java
* Add a regression test to catch future silliness in the index-buildingTom Lane2003-05-29
| | | | area...