summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2003-07-21Fix relkind test for pg_tables.Bruce Momjian
Mike Quinn
2003-07-21Error message editing in backend/catalog.Tom Lane
2003-07-20Another round of error message editing, covering backend/commands/.Tom Lane
2003-07-20Add Opteron/Itanium comment.Bruce Momjian
2003-07-19Error message editing: finish up undone task of reporting the problemTom Lane
xid when we fail to access pg_clog.
2003-07-19Add ereport-related functions to GETTEXT_TRIGGERS list.Tom Lane
2003-07-19Another round of error message editing, covering backend/parser/.Tom Lane
2003-07-18First bits of work on error message editing.Tom Lane
2003-07-18Add cleaner formatting to config file.Bruce Momjian
2003-07-18Added more compat stuff ot the parser.Michael Meskes
2003-07-18It seems some case-insensitive locales sort upper case before lowerTom Lane
(BBBB before bbbb) and others the other way around. Provide comparison files that cater to both approaches.
2003-07-17Add an upper limit to IS_VALID_JULIAN() to defend against overflow inTom Lane
date2j(). This ensures we give reasonable errors instead of bizarre behavior for input dates far in the future.
2003-07-17Oh, for crying in a bucket ... relax Assert so that glibc's strxfrmTom Lane
does not dump core.
2003-07-17Work around buggy strxfrm() present in some Solaris releases.Tom Lane
2003-07-17For COMMENT ON DATABASE where database name is unknown or not the currentTom Lane
database, emit a WARNING and do nothing, rather than raising ERROR. Per recent discussion in which we concluded this is the best way to deal with database dumps that are reloaded into a database of a new name.
2003-07-17Repair boundary-case bug introduced by patch of two months ago thatTom Lane
fixed incorrect initial setting of StartUpID. The logic in XLogWrite() expects that Write->curridx is advanced to the next page as soon as LogwrtResult points to the end of the current page, but StartupXLOG() failed to make that happen when the old WAL ended exactly on a page boundary. Per trouble report from Hannu Krosing.
2003-07-17Allow blanks at the end of numerical values.Michael Meskes
2003-07-17Fixed some bugs in Informix compat functions.Michael Meskes
2003-07-17Make EXTRACT(TIMEZONE) and SET/SHOW TIMEZONE follow the SQL conventionTom Lane
for the sign of timezone offsets, ie, positive is east from UTC. These were previously out of step with other operations that accept or show timezones, such as I/O of timestamptz values.
2003-07-16Add defenses against trying to attach qual conditions to a setOperationTom Lane
query node, since that won't work unless the planner is upgraded. Someday we should try to support at least some cases of this, but for now just plug the hole in the dike. Per discussion with Dmitry Tkach.
2003-07-16Applied patch to fix two compatibility functions.Michael Meskes
2003-07-15Now that I look, SHOW TRANSACTION_ISOLATION isn't quite consistentTom Lane
with SET TRANSACTION_ISOLATION, either.
2003-07-15Cause SHOW DATESTYLE to produce a string that will be accepted by SETTom Lane
DATESTYLE, for instance 'SQL, European' instead of 'SQL with European conventions'. Per gripe a month or two back from Barry Lind.
2003-07-15Avoid use of int64_t, which seems not to be very portable. SimplifyTom Lane
padding logic for struct sockaddr_storage --- original version did not do what it claimed to when SALEN is defined.
2003-07-15OSF supports pthreads, per Philip Yarra.Tom Lane
2003-07-15Started to create different error codes for different backend messages.Michael Meskes
2003-07-15Tweak original coding so that we can determine the platform-specificTom Lane
shared_buffers and max_connections values to use before we run the bootstrap process. Without this, initdb would fail on platforms where the hardwired default values are too large. (We could get around that by making the hardwired defaults tiny, perhaps, but why slow down bootstrap by starving it for buffers...)
2003-07-14Remove duplicate definition of ERROR.Tom Lane
2003-07-14Make cost estimates for SubqueryScan more realistic: charge cpu_tuple_costTom Lane
for each row processed, and don't forget the evaluation cost of any restriction clauses attached to the node. Per discussion with Greg Stark.
2003-07-14Fix typo in comment, as noted by Weiping He.Tom Lane
2003-07-14The default values for shared_buffers and max_connections are now 1000Tom Lane
and 100 respectively, if the platform will allow it. initdb selects values that are not too large to allow the postmaster to start, and places these values in the installed postgresql.conf file. This allows us to continue to start up out-of-the-box on platforms with small SHMMAX, while having somewhat-realistic default settings on platforms with reasonable SHMMAX. Per recent pghackers discussion.
2003-07-14Whoops, missed committing this change to match cosmetic changes inTom Lane
ascii.c.
2003-07-14Fix a *second* buffer overrun bug in to_ascii(). Grumble.Tom Lane
2003-07-14Missed one rule in syncinc preproc.y which resulted in reduce/reduce conflicts.Michael Meskes
2003-07-14 - Synced preproc.y with gram.yMichael Meskes
- Init sqlca in ECPGprepare(). - Added CLOSE DATABASE for Informix compatibility.
2003-07-09Add description for new GUC context.Bruce Momjian
Aizaz Ahmed
2003-07-09Argh! Missed one file.Michael Meskes
2003-07-09Fixed some Informix compat functions so they handle NULL resp. indicators ↵Michael Meskes
better.
2003-07-09Add special checks for non-super-user setting LOG_MIN_DURATION_STATEMENTBruce Momjian
to zero.
2003-07-09Add new USERLIMIT GUC source level so certain options can be disabledBruce Momjian
or increased only by super-users. This fixes problems caused by making certain variables SUSET for security reasons.
2003-07-09Applied patch from Kim Ho @ redhat.com to make support for setObject() moreBarry Lind
spec complient with regards to various data/time/timestamp objects Modified Files: jdbc/org/postgresql/errors.properties jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java
2003-07-08More informix fixes.Michael Meskes
2003-07-08Fix segfault in connect in informix mode.Michael Meskes
2003-07-07"char *" of course is not the same as "char []". So I had to fix the way ↵Michael Meskes
ecpg treated the second one.
2003-07-04tm2timestamp should return -1, not elog, on overflow. (In the backendTom Lane
this is merely an API inconsistency, but in ecpg it's fatal.) Also, fix misconceived overflow test in HAVE_INT64_TIMESTAMP case.
2003-07-04Fix missing code for HAVE_INT64_TIMESTAMP.Tom Lane
2003-07-04Add --help-config facility to dump information about GUC parametersTom Lane
without needing a running backend. Reorder postgresql.conf.sample to match new layout of runtime.sgml. This commit re-adds work lost in Wednesday's crash.
2003-07-04Add #include <limits.h> (re-add lost change from Wednesday).Tom Lane
2003-07-04date, interval and timestamp data should be quoted.Michael Meskes
2003-07-04Fixed informix behaviour for select without into.Michael Meskes