9e0ab7126d
Reimplement create and drop scripts in C, to reduce repetitive
...
connections, increase robustness, add NLS, and prepare for Windows port.
(vacuumdb and clusterdb will follow later.)
2003-03-18 22:19:47 +00:00
cf1cf89649
Make the printing code somewhat more independent by not relying on
...
functions and global variables from the rest of psql. Also clean up some
data type mismatches created by the last pager patch.
2003-03-18 22:15:44 +00:00
9384dc6e59
Improve error message.
2003-03-18 22:11:48 +00:00
a14424a9d2
Fix off-by-one error in the maxlen parameter handling.
2003-03-18 22:09:37 +00:00
6cf8ce13db
Compiling anything that uses InvalidOid under g++ yields a warning about
...
the expression using an "old-style cast." Therefore, would it be okay
to patch postgres_ext.h as follows:
Jeroen T. Vermeulen
2003-03-18 17:21:07 +00:00
526de7ffd1
Remove duplicate ANALYZE recommendation in pg_dump.
2003-03-18 17:05:01 +00:00
6fad73ed45
Some bugfixes for numerical library.
2003-03-18 10:46:39 +00:00
a6f00f3939
Applied updated translation patch
...
Modified Files:
errors_zh_TW.properties
2003-03-18 05:26:50 +00:00
6fdd71c133
Add to mmap discussion.
2003-03-18 01:36:01 +00:00
29c18bca50
Add mention of ANALYZE after object restore.
2003-03-18 00:02:11 +00:00
ccfa6f1c1e
Add mention of new sets returning functions capability.
2003-03-17 19:53:08 +00:00
77312655a9
Update links, from Ian Barwick
2003-03-17 19:47:28 +00:00
b776fc198b
Add:
...
> * Allow UPDATE tab SET ROW (col, ...) = (...) for updating multiple columns
2003-03-17 18:50:06 +00:00
93b408ef86
Reorder crypt.h include for SunOS compile problem.
...
Fred Houweling
2003-03-17 17:58:57 +00:00
aac4484345
Increase max known database size.
2003-03-17 16:33:12 +00:00
bb3730893b
Forgot some files...
2003-03-16 10:49:51 +00:00
a4f25b6a9c
Started working on a seperate pgtypes library. First test work. PLEASE test compilation on iother systems.
2003-03-16 10:42:54 +00:00
48dfa0d057
Arrange to print the relevant key values when reporting a foreign-key
...
violation. Also, factor out some duplicate code in the RI triggers.
Patch by Dmitry Tkach, reviewed by Stephan Szabo and Tom Lane.
2003-03-15 21:19:40 +00:00
35911088ff
A typo in src/backend/libpq/hba.c breaks local ident authentication
...
in the SO_PEERCRED case. elif is misspelled as elsif for the test.
A patch is attached.
Bruno Wolff III
2003-03-15 16:18:25 +00:00
2a44306396
pg_dumpall failed on groups having no members. Per report from
...
Nick Eskelinen.
2003-03-14 22:45:49 +00:00
c90354bad0
Remove unneeded dash blocks around function start comments.
2003-03-14 22:40:31 +00:00
dc95c9f3ab
Update name of GUC var:
...
< * Add GUC log_statement_duration to print statement and >= min duration
> * Add GUC log_statement_and_duration to print statement and >= min duration
2003-03-14 20:19:59 +00:00
96fecb54dc
Add:
...
> * Add GUC log_statement_duration to print statement and >= min duration
2003-03-14 19:27:49 +00:00
9f66350b0e
Fixed parsing to handle \n for updateable result sets. Bug reported by Rich Cullingford.
...
Modified Files:
jdbc/org/postgresql/jdbc2/AbstractJdbc2ResultSet.java
2003-03-14 05:36:58 +00:00
a6bf340975
Repair incorrect prorettype entry for timestamptz_izone. Can't force
...
initdb in the 7.3 branch, but we can at least make it right for people
who install 7.3.3 from scratch.
2003-03-14 04:43:52 +00:00
77ce53580b
Improved error message and added some log messages in batch update functionality
...
Modified Files:
jdbc/org/postgresql/errors.properties
jdbc/org/postgresql/jdbc2/AbstractJdbc2Statement.java
jdbc/org/postgresql/util/PSQLException.java
2003-03-14 01:21:47 +00:00
7931bfa764
Make eval_const_expressions simplify FieldSelect from a whole-row Var
...
into an ordinary one-field Var. Per example from Chris Mungall.
2003-03-14 00:55:17 +00:00
2a1ef30b57
Prevent infinite loop in ln_var() due to roundoff error.
...
Per report from Dave Marin.
2003-03-14 00:15:32 +00:00
6c4996fa6b
GROUP BY got confused if there were multiple equal() GROUP BY items.
...
This bug has been latent since 7.0 or maybe even further back, but it
was only exposed when parse_clause.c stopped suppressing duplicate
items (see its rev 1.96 of 18-Aug-02).
2003-03-13 16:58:35 +00:00
706a32cdf6
Big editing for consistent content and presentation.
2003-03-13 01:30:29 +00:00
31e69ccb21
Add explicit tests for division by zero to all user-accessible integer
...
division and modulo functions, to avoid problems on OS X (which fails to
trap 0 divide at all) and Windows (which traps it in some bizarre
nonstandard fashion). Standardize on 'division by zero' as the one true
spelling of this error message. Add regression tests as suggested by
Neil Conway.
2003-03-11 21:01:33 +00:00
6261c75014
Implement SQL92-compatible FIRST, LAST, ABSOLUTE n, RELATIVE n options
...
for FETCH and MOVE.
2003-03-11 19:40:24 +00:00
e4704001ea
This patch fixes a bunch of spelling mistakes in comments throughout the
...
PostgreSQL source code.
Neil Conway
2003-03-10 22:28:22 +00:00
081fa240a1
Update German FAQ
...
Ian Barwick
2003-03-10 16:06:41 +00:00
51b2b6433b
Cleanup up psql \connect and \pset pager setting display, Dennis
...
Bj?rklund.
2003-03-10 15:46:03 +00:00
aa83bc04e0
Restructure parsetree representation of DECLARE CURSOR: now it's a
...
utility statement (DeclareCursorStmt) with a SELECT query dangling from
it, rather than a SELECT query with a few unusual fields in it. Add
code to determine whether a planned query can safely be run backwards.
If DECLARE CURSOR specifies SCROLL, ensure that the plan can be run
backwards by adding a Materialize plan node if it can't. Without SCROLL,
you get an error if you try to fetch backwards from a cursor that can't
handle it. (There is still some discussion about what the exact
behavior should be, but this is necessary infrastructure in any case.)
Along the way, make EXPLAIN DECLARE CURSOR work.
2003-03-10 03:53:52 +00:00
b9e8ffcd5d
pg_restore failed to restore blobs if -X disable-triggers is specified.
2003-03-09 19:38:52 +00:00
dd04e958c8
tuplestore_donestoring() isn't needed anymore, but provide a no-op
...
macro definition so as not to create compatibility problems.
2003-03-09 03:34:10 +00:00
aa60eecc37
Revise tuplestore and nodeMaterial so that we don't have to read the
...
entire contents of the subplan into the tuplestore before we can return
any tuples. Instead, the tuplestore holds what we've already read, and
we fetch additional rows from the subplan as needed. Random access to
the previously-read rows works with the tuplestore, and doesn't affect
the state of the partially-read subplan. This is a step towards fixing
the problems with cursors over complex queries --- we don't want to
stick in Materialize nodes if they'll prevent quick startup for a cursor.
2003-03-09 02:19:13 +00:00
05a966fca4
Applied patch from Paul Sorenson to correctly handle schema names in updateable result sets.
...
Applied patch from Rich Cullingford to fix a NPE in the absolute() method of result set.
Applied patch from Tarjei Skorgenes to fix a NPE when logging is enabled.
Modified Files:
jdbc/org/postgresql/core/BaseResultSet.java
jdbc/org/postgresql/jdbc1/AbstractJdbc1ResultSet.java
jdbc/org/postgresql/jdbc2/Array.java
jdbc/org/postgresql/util/PSQLException.java
2003-03-08 06:06:55 +00:00
f93672e2c9
Not done:
...
> * Precompile SQL functions to avoid overhead (Neil)
2003-03-08 04:23:05 +00:00
b4bb288e5b
Reorder items and mark some as completed.
...
> * Allow savepoints / nested transactions [transactions] (Bruce)
215d210
< o Add GUC parameter to control the maximum number of rewrite cycles
227,228c222
< o Allow parameters to be specified by name and type during
< definition
> o Allow parameters to be specified by name and type during definition
304,305d297
< * Overhaul bufmgr/lockmgr/transaction manager
< * Allow savepoints / nested transactions [transactions] (Bruce)
386,387c378,379
< * Add checkpoint_min_warning postgresql.conf option to warn about checkpoints
< that are too frequent
> * -Add checkpoint_min_warning postgresql.conf option to warn about checkpoints
> that are too frequent (Bruce)
390d381
< * Allow pg_xlog to be moved without symlinks
406c397
< * Precompile SQL functions to avoid overhead (Neil)
> * -Precompile SQL functions to avoid overhead (Neil)
2003-03-08 03:03:49 +00:00
6ee060f201
Cleanup and reorganization.
...
- Added a private api layer (org.postgresql.core.Base*)
- Cleaned up public api (org.postgresql.PG*)
- Added consistent headers and copywrite info
- Removed deprecated Serialize functionality
- Cleaned up imports
- Moved some files to more appropriate locations
Modified Files:
jdbc/org/postgresql/Driver.java.in
jdbc/org/postgresql/PGConnection.java
jdbc/org/postgresql/PGNotification.java
jdbc/org/postgresql/PGStatement.java
jdbc/org/postgresql/core/Encoding.java
jdbc/org/postgresql/core/Notification.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/geometric/PGbox.java
jdbc/org/postgresql/geometric/PGcircle.java
jdbc/org/postgresql/geometric/PGline.java
jdbc/org/postgresql/geometric/PGlseg.java
jdbc/org/postgresql/geometric/PGpath.java
jdbc/org/postgresql/geometric/PGpoint.java
jdbc/org/postgresql/geometric/PGpolygon.java
jdbc/org/postgresql/jdbc1/AbstractJdbc1Connection.java
jdbc/org/postgresql/jdbc1/AbstractJdbc1DatabaseMetaData.java
jdbc/org/postgresql/jdbc1/AbstractJdbc1ResultSet.java
jdbc/org/postgresql/jdbc1/AbstractJdbc1ResultSetMetaData.java
jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java
jdbc/org/postgresql/jdbc1/Jdbc1CallableStatement.java
jdbc/org/postgresql/jdbc1/Jdbc1Connection.java
jdbc/org/postgresql/jdbc1/Jdbc1DatabaseMetaData.java
jdbc/org/postgresql/jdbc1/Jdbc1PreparedStatement.java
jdbc/org/postgresql/jdbc1/Jdbc1ResultSet.java
jdbc/org/postgresql/jdbc1/Jdbc1ResultSetMetaData.java
jdbc/org/postgresql/jdbc1/Jdbc1Statement.java
jdbc/org/postgresql/jdbc2/AbstractJdbc2Blob.java
jdbc/org/postgresql/jdbc2/AbstractJdbc2Clob.java
jdbc/org/postgresql/jdbc2/AbstractJdbc2Connection.java
jdbc/org/postgresql/jdbc2/AbstractJdbc2DatabaseMetaData.java
jdbc/org/postgresql/jdbc2/AbstractJdbc2ResultSet.java
jdbc/org/postgresql/jdbc2/AbstractJdbc2ResultSetMetaData.java
jdbc/org/postgresql/jdbc2/AbstractJdbc2Statement.java
jdbc/org/postgresql/jdbc2/Array.java
jdbc/org/postgresql/jdbc2/Jdbc2CallableStatement.java
jdbc/org/postgresql/jdbc2/Jdbc2Connection.java
jdbc/org/postgresql/jdbc2/Jdbc2PreparedStatement.java
jdbc/org/postgresql/jdbc2/Jdbc2ResultSet.java
jdbc/org/postgresql/jdbc2/Jdbc2ResultSetMetaData.java
jdbc/org/postgresql/jdbc2/Jdbc2Statement.java
jdbc/org/postgresql/jdbc3/AbstractJdbc3ResultSet.java
jdbc/org/postgresql/jdbc3/Jdbc3CallableStatement.java
jdbc/org/postgresql/jdbc3/Jdbc3Connection.java
jdbc/org/postgresql/jdbc3/Jdbc3PreparedStatement.java
jdbc/org/postgresql/jdbc3/Jdbc3ResultSet.java
jdbc/org/postgresql/jdbc3/Jdbc3ResultSetMetaData.java
jdbc/org/postgresql/jdbc3/Jdbc3Statement.java
jdbc/org/postgresql/largeobject/BlobInputStream.java
jdbc/org/postgresql/largeobject/BlobOutputStream.java
jdbc/org/postgresql/largeobject/LargeObject.java
jdbc/org/postgresql/largeobject/LargeObjectManager.java
jdbc/org/postgresql/test/jdbc2/Jdbc2TestSuite.java
jdbc/org/postgresql/test/jdbc2/optional/BaseDataSourceTest.java
jdbc/org/postgresql/util/MD5Digest.java
jdbc/org/postgresql/util/MessageTranslator.java
jdbc/org/postgresql/util/PGbytea.java
jdbc/org/postgresql/util/PGmoney.java
jdbc/org/postgresql/util/PGobject.java
jdbc/org/postgresql/util/PGtokenizer.java
jdbc/org/postgresql/util/PSQLException.java
jdbc/org/postgresql/util/UnixCrypt.java
Added Files:
jdbc/org/postgresql/core/BaseConnection.java
jdbc/org/postgresql/core/BaseResultSet.java
jdbc/org/postgresql/core/BaseStatement.java
jdbc/org/postgresql/core/Field.java
jdbc/org/postgresql/core/PGStream.java
Removed Files:
jdbc/org/postgresql/Field.java
jdbc/org/postgresql/PG_Stream.java
jdbc/org/postgresql/test/jdbc2/SerializeObject.java
jdbc/org/postgresql/test/jdbc2/SerializeTest.java
jdbc/org/postgresql/util/Serialize.java
2003-03-07 18:39:46 +00:00
2e6887df63
Add to mmap emails.
2003-03-07 17:43:26 +00:00
b7e089fdbb
Update FAQ.
2003-03-07 05:49:10 +00:00
650a854936
Update Russian FAQ, from Viktor Vislobokov.
2003-03-07 05:46:51 +00:00
f7cffbbbd7
Tweak dependency code to suppress NOTICEs generated by new method for
...
cleaning out temp namespaces. We don't really want the server log to be
cluttered with 'Drop cascades to table foo' every time someone uses a
temp table...
2003-03-06 22:54:49 +00:00
0c693b4926
Add missing --globals-only (long form of -g).
2003-03-06 21:45:52 +00:00
086c0712a7
Add:
...
> o Report server version number, database encoding, client encoding
2003-03-06 19:53:07 +00:00
601a2c970c
Add for protocol changes:
...
> o Report server version number
2003-03-06 19:52:20 +00:00