Barry Lind
509a9cd3f9
More SQLState updates from Kim Ho at Redhat.
...
Also a patch from Kris Jurka to correctly report SQLState support.
Modified Files:
jdbc/org/postgresql/Driver.java.in
jdbc/org/postgresql/core/QueryExecutor.java
jdbc/org/postgresql/fastpath/Fastpath.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/jdbc1/AbstractJdbc1Connection.java
jdbc/org/postgresql/jdbc1/AbstractJdbc1ResultSet.java
jdbc/org/postgresql/jdbc1/AbstractJdbc1ResultSetMetaData.java
jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java
jdbc/org/postgresql/jdbc2/AbstractJdbc2ResultSet.java
jdbc/org/postgresql/jdbc2/AbstractJdbc2ResultSetMetaData.java
jdbc/org/postgresql/jdbc2/Array.java
jdbc/org/postgresql/jdbc3/AbstractJdbc3DatabaseMetaData.java
jdbc/org/postgresql/util/PGmoney.java
jdbc/org/postgresql/util/PSQLState.java
23 years ago
Tom Lane
f8c365c8db
Marginal hacks to make tables format more nicely.
23 years ago
Tom Lane
a75ee43ce9
Mop-up for error-message updates in documentation.
23 years ago
Tom Lane
6e59122490
Update obsolete examples of error messages; various other minor editing.
23 years ago
Tom Lane
8b43e325eb
Revert to our pre-7.4 behavior of identifying Unix-socket connections in
...
ps status as '[local]', not as 'localhost' as the code has been doing
recently. That's too easily confused with TCP loopback connections,
and there is no good reason to change the behavior anyway.
23 years ago
Tom Lane
b1d3de6b96
Someone (possibly me) foolishly reduced the response for failing
...
to create a TCP/IP socket from FATAL to LOG. This was unwise;
historically we have expected socket conflicts to abort postmaster
startup. Conflicts on port numbers with another postmaster can only
be detected reliably at the TCP socket level.
23 years ago
Bruce Momjian
9fc3b9330e
Mark FreeBSD as non-thread-safe.
23 years ago
Tom Lane
17d15ddf75
Fix incorrect pfree in to_tsquery_name(), per Nigel Andrews.
23 years ago
Bruce Momjian
06e3ec7a54
Implement compiler #error if spinlock code not found, add configure flag
...
to bypass the error, --without-spinlocks.
23 years ago
Bruce Momjian
69a46e9ce1
Enable Opteron/Itanium spinlocks.
23 years ago
Bruce Momjian
9182481bea
Remove WIN32_CONSOLE support, at the request of the author.
23 years ago
Bruce Momjian
aaafbdcfd3
Fix old mention of exec() in AttachSharedMemoryAndSemaphores comment.
23 years ago
Tom Lane
e90b841915
More cleanup of Diagnostics sections.
23 years ago
Tom Lane
fbb39c059e
Small typo.
23 years ago
Tom Lane
8ff2005c67
Message in the other exit from acquire_sample_rows(), as per update
...
from Mark Kirkwood. Also show the sample size.
23 years ago
Tom Lane
47c7f9ef1c
Try to make recently-added analyze log message look something like
...
the others in style.
23 years ago
Bruce Momjian
2a5b6a7c9b
This patch fixes a few missed GUC variables that were still upper case,
...
makes a few more small improvements to runtime.sgml, and makes some SGML
conventions more consistent.
Neil Conway
23 years ago
Bruce Momjian
3d48045ae1
> It quotes table names for vacuum and analyze, and uppercases the
...
> keywords for clarity.
Yeah, this is basically what I meant, sorry I didn't get to it quicker.
However, I tested it out a little and the patch you made doesn't work
because it produces commands like:
VACUUM ANALYZE "public.FooBar"
Which doesn't work, so I made my own patch that creates commands like:
VACUUM ANALYZE "public"."FooBar"
This allows for mixed case schema names as well as tables.
Adam, can you please give this a test as you are the person who caught
the bug in the first place.
Thanks,
Matthew T. O'Connor
23 years ago
Bruce Momjian
188eda0df2
Consistenly lowercase GUC variable names, in docs and error messages.
23 years ago
Bruce Momjian
8e27be4310
This patch makes a few minor improvements to the docs: make the
...
<varname> conventions more consistent, and improve the ANALYZE ref page.
Neil Conway
23 years ago
Bruce Momjian
64a7b58aa0
This patch makes a number of improvements to the runtime config
...
documentation.
Neil Conway
23 years ago
Bruce Momjian
ab19254618
Mention that pg_type_is_visible is used for domains as well.
...
Christopher Kings-Lynne
23 years ago
Bruce Momjian
a5e9e51fb0
on my timetravel.c I find a bug: after the
...
ALTER TABLE mytable drop column last_column_of_table;
the timetravel trigger say on UPDATE/DELETE:
ERROR: parser: parse error at end of input
Here is the patch for this bug
B?jthe Zolt?n
23 years ago
Bruce Momjian
92e100dd33
Here is a patch that removes contrib/array, leaving only the README with
...
some examples of the new syntax and a reference to the documentation.
Joe Conway.
23 years ago
Bruce Momjian
d768cb267b
seemed like a typo in one of the appendix tables
...
Robert Treat
23 years ago
Tom Lane
fdd93470fa
Fix missed message update, per Alvaro Herrera.
23 years ago
Bruce Momjian
d6a9b4e0b5
Update row count for \? output, used by pager.
23 years ago
Tom Lane
9cb4a28f47
Improve error message for cp or rm failur during create/drop database,
...
per recent discussions.
23 years ago
Bruce Momjian
2b56a9646a
Add:
...
> * Issue NOTICE if foreign key data type doesn't match primary key
23 years ago
Bruce Momjian
e303be78e8
Add:
...
> * Have EXPLAIN ANALYZE highlight poor optimizer estimates
23 years ago
Bruce Momjian
73cfa77edd
This patch fixes a trivial typo in the CREATE FUNCTION ref page.
...
Neil Conway
23 years ago
Tom Lane
336ebee2c0
copydir() is supposed to return on failure, not elog(ERROR). Reduce
...
ERROR to WARNING so we keep control.
23 years ago
Bruce Momjian
d16b877612
Add HINT if CREATE FUNCTION specifies a valid language, but the language
...
isn't loaded into the database.
23 years ago
Bruce Momjian
a72fce035d
Add quotes to vacuum/analyze for upper/lowercase table names, per
...
Matthew T. O'Connor.
23 years ago
Michael Meskes
573f4500a3
Some uppercase type definitions were left.
23 years ago
Bruce Momjian
0f310ee703
Here is a patch to make PostgreSQL use a full path in DT_SONAME for
...
UnixWare.
Larry Rosenman
23 years ago
Bruce Momjian
a9953097f4
Clean up printability test in dbase code.
23 years ago
Bruce Momjian
22b305ad4a
Add:
...
> * Have pg_dump -c clear the database using dependency information
23 years ago
Peter Eisentraut
33d4c828fd
Some "feature not supported" errors are better syntax errors, because the
...
feature they complain about isn't a feature or cannot be implemented without
definitional changes.
23 years ago
Bruce Momjian
3610f083c1
Improve wording of increasing page size.
23 years ago
Tom Lane
d4019b7cd3
Remove a bunch of content-free Diagnostics sections, as per previous
...
discussion. (Still have some work to do editing the remainder.)
23 years ago
Bruce Momjian
1815f6179d
Update max tasble size to 32TB.
23 years ago
Tom Lane
d0bfe7f100
Update comments about how locale settings are handled.
23 years ago
Barry Lind
62b53accd4
Clean up some unused import warnings in the example jdbc code
23 years ago
Michael Meskes
2fab616866
Fixed a few bugs that came up on pgsql-interfaces.
23 years ago
Barry Lind
5cdf771d8a
Additional SQLState work for JDBC - thanks to Kim Ho at Redhat for input on this
...
Modified Files:
jdbc/build.xml jdbc/org/postgresql/core/QueryExecutor.java
jdbc/org/postgresql/jdbc1/AbstractJdbc1Connection.java
jdbc/org/postgresql/jdbc1/AbstractJdbc1DatabaseMetaData.java
jdbc/org/postgresql/jdbc1/AbstractJdbc1ResultSet.java
jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java
jdbc/org/postgresql/jdbc2/AbstractJdbc2Statement.java
jdbc/org/postgresql/util/PSQLState.java
23 years ago
Michael Meskes
fcdf0e22fc
- Added Dave patch for Informix handling of numeric/int conversion.
...
- Changed all new datatypes to lowercase.
- Fixed rounding bug in numerical types.
23 years ago
Tom Lane
fd65be4a78
Fix a couple minor typos.
23 years ago
Peter Eisentraut
6de93c0529
Update preface.
...
Use question marks rather than brackets to delimit optional elements in
Tcl synopses.
Fix stylesheet misfeature leading to excessively long cross-reference text
when linking to a different "part".
Remove <body> attributes -- CSS stylesheets should handle that.
Improve bibliography formatting.
Add fast-forward links for more convenient navigation.
23 years ago
Bruce Momjian
e54965c0f8
Add:
...
o Allow ALTER TABLE to change constraint deferrability and actions
23 years ago