summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2000-12-30Imporve messages.Tatsuo Ishii
2000-12-30Apparently, special float8 comparison file for Alpha is only neededTom Lane
when using vendor cc, not gcc.
2000-12-30Clean up spinlock assembly code slightly (just cosmetic improvements)Tom Lane
for Alpha gcc case. For Alpha non-gcc case, replace use of __INTERLOCKED_TESTBITSS_QUAD builtin with __LOCK_LONG_RETRY and __UNLOCK_LONG. The former does not execute an MB instruction and therefore was guaranteed not to work on multiprocessor machines. The LOCK_LONG builtins produce code that is the same in all essential details as the gcc assembler code.
2000-12-30Paranoia about possible values of errno after a shmget/semget failure.Tom Lane
In theory we should always get EEXIST if there's a key collision, but if the kernel code tests error conditions in a weird order, perhaps EACCES or EIDRM could occur too.
2000-12-30Remove obsolete and unportable enable_plpgsql script. createlang hasTom Lane
been the supported and documented way to do this for a long time...
2000-12-30Fix unportable use of '!' in shell commands.Peter Eisentraut
2000-12-29column and tuple numbers should be int not size_t.Tom Lane
2000-12-29Fix failure in CreateCheckPoint on some Alpha boxes --- it's not OK toTom Lane
assume that TAS() will always succeed the first time, even if the lock is known to be free. Also, make sure that code will eventually time out and report a stuck spinlock, rather than looping forever. Small cleanups in s_lock.h, too.
2000-12-29MUST update (in-memory) data page BEFORE XLogInsert to logVadim B. Mikheev
NEW page content if WAL will decide to backup page.
2000-12-29stamp-h needs to be made by config.status, not elsewhere, per recipe inTom Lane
Autoconf manual. In particular, touching it before creating config.status is guaranteed to lose.
2000-12-29nbtree_xlog_newroot: set meta flag in meta page opaque.Vadim B. Mikheev
2000-12-28Attached are patches for two fixes to reduce memory usage by the JDBCBruce Momjian
drivers. The first fix fixes the PreparedStatement object to not allocate unnecessary objects when converting native types to Stings. The old code used the following format: (new Integer(x)).toString() whereas this can more efficiently be occompilshed by: Integer.toString(x); avoiding the unnecessary object creation. The second fix is to release some resources on the close() of a ResultSet. Currently the close() method on ResultSet is a noop. The purpose of the close() method is to release resources when the ResultSet is no longer needed. The fix is to free the tuples cached by the ResultSet when it is closed (by clearing out the Vector object that stores the tuples). This is important for my application, as I have a cache of Statement objects that I reuse. Since the Statement object maintains a reference to the ResultSet and the ResultSet kept references to the old tuples, my cache was holding on to a lot of memory. Barry Lind
2000-12-28New WAL version - CRC and data blocks backup.Vadim B. Mikheev
2000-12-28Let's try this again on accepting the correct range of Oid input valuesTom Lane
for 64-bit platforms ...
2000-12-27Fix portability problems recently exposed by regression tests on Alphas.Tom Lane
1. Distinguish cases where a Datum representing a tuple datatype is an OID from cases where it is a pointer to TupleTableSlot, and make sure we use the right typlen in each case. 2. Make fetchatt() and related code support 8-byte by-value datatypes on machines where Datum is 8 bytes. Centralize knowledge of the available by-value datatype sizes in two macros in tupmacs.h, so that this will be easier if we ever have to do it again.
2000-12-23Improve comments.Tom Lane
2000-12-23Compute reasonable cost and output-row-count estimates for LIMIT planTom Lane
nodes.
2000-12-23Replace overly-cute coding with code that (a) has defined behaviorTom Lane
according to the ANSI C spec, (b) gets the boundary conditions right, and (c) is about a third as long and three times more intelligible.
2000-12-22Small cleanup of temp-table handling. Disallow creation of a non-tempTom Lane
table that inherits from a temp table. Make sure the right things happen if one creates a temp table, creates another temp that inherits from it, then renames the first one. (Previously, system would end up trying to delete the temp tables in the wrong order.)
2000-12-22Repair not-too-well-thought-out code to do rangechecking of OIDs onTom Lane
64-bit machines. Also, make oidvectorin use the same code as oidin.
2000-12-22Avoid XLogFlush for clean buffers in BufferSync.Vadim B. Mikheev
2000-12-22Improve error message for case where DROP TABLE is rejected becauseTom Lane
table has a child table.
2000-12-22Add 'ONLY' to queries generated by RI triggers, so as to preserve pre-7.1Tom Lane
semantics of RI operations. Eventually we ought to look at making RI work properly across inheritance trees, but not for 7.1 ...
2000-12-22Change default output formatting for CIDR to be unabbreviated, perTom Lane
recommendation from Paul Vixie. Add a new abbrev() function to produce abbreviated format as text. No forced initdb, but new function is not available unless you do an initdb or add the pg_proc row manually.
2000-12-22- Fixed bug in a connect statement using varchars.Michael Meskes
- Synced parser.
2000-12-22Fix PQsetdbLogin() backward compatibility problem.Tatsuo Ishii
If pghost == "" and pgport == "" then PQsetdbLogin() fails with a error message: Is the postmaster running locally and accepting connections on Unix socket '/tmp/.s.PGSQL.0'? I see many applications such as PHP fails due to this behavior. Now if pgport == "", then it is assumed to be a DEF_PGPORT_STR. This is the same behavior as the version prior 7.1.
2000-12-22Clean up CREATE TYPE/OPERATOR/AGGREGATE productions, so that parserTom Lane
will not accept types named with operator names or vice versa.
2000-12-22In looking at the 7.1beta1 code for JDBC, I noticed that support wasBruce Momjian
added to support character set encodings. However I noticed that the encoding that is used isn't obtained from the DB. Since Java uses unicode UCS2 internally the character set encoding is used to translate strings from/to the DB encoding. So it seems logical that the code would get the encoding from the DB instead of the current method of requiring the user pass it as a parameter. Attached is a patch that gets the DB encoding from the DB in the same manner as is done in libpq/fe-connect.c. The patch is created off of the latest CVS sources (Connection.java version 1.10). Barry Lind
2000-12-22Revise lock manager to support "session level" locks as well as "transactionTom Lane
level" locks. A session lock is not released at transaction commit (but it is released on transaction abort, to ensure recovery after an elog(ERROR)). In VACUUM, use a session lock to protect the master table while vacuuming a TOAST table, so that the TOAST table can be done in an independent transaction. I also took this opportunity to do some cleanup and renaming in the lock code. The previously noted bug in ProcLockWakeup, that it couldn't wake up any waiters beyond the first non-wakeable waiter, is now fixed. Also found a previously unknown bug of the same kind (failure to scan all members of a lock queue in some cases) in DeadLockCheck. This might have led to failure to detect a deadlock condition, resulting in indefinite waits, but it's difficult to characterize the conditions required to trigger a failure.
2000-12-21Repair round(numeric) function. An initdb would be required to get thePeter Eisentraut
fixed version, otherwise you'll continue to encounter breakage.
2000-12-21Fix longstanding bug with VIEW using BETWEEN: OffsetVarNodes would getTom Lane
applied to the duplicated subtree twice. Probably someday we should fix the parser not to generate multiple links to the same subtree, but for now a quick copyObject() is the path of least resistance.
2000-12-20Remove multi.c and single.c, which have been dead code forTom Lane
over two years.
2000-12-20Prevent freshly-started backend from ignoring SIGUSR1, per race conditionTom Lane
observed by Inoue. Also, don't call ProcRemove() from postmaster if we have detected a backend crash --- too risky if shared memory is corrupted. It's not needed anyway, considering we are going to reinitialize shared memory and semaphores as soon as the last child is dead.
2000-12-20Finished build.xml and updated Driver.java.in and buildDriver to match how ↵Peter Mount
Makefile and ANT operate.
2000-12-19Rename --accounts-only to --globals-only, polish documentation.Peter Eisentraut
2000-12-19Polish PL/Perl documentation. The README file got shrunk to being aPeter Eisentraut
pointer into the real documentation.
2000-12-19Remove inclusions of <malloc.h>.Peter Eisentraut
2000-12-19Finally created ant build.xml filePeter Mount
2000-12-18>> Here is a patch for the beos port (All regression tests are OK).Bruce Momjian
>> xlog.c : special case for beos to avoid 'link' which does not work yet >> beos/sem.c : implementation of new sem_ctl call (GETPID) and a new >sem_op >> flag (IPCNOWAIT) >> dynloader/beos.c : add a verification of symbol validity (seem that the >> loader sometime return OK with an invalid symbol) >> postmaster.c : add beos forking support for the new checkpoint process >> postgres.c : remove beos special case for getrusage >> beos.h : Correction of a bas definition of AF_UNIX, misc defnitions >> >> >> thanks >> >> >> cyril Cyril VELTER
2000-12-18Ensure that 'errno' is saved and restored by all signal handlers thatTom Lane
might change it. Experimentation shows that the signal handler call mechanism does not save/restore errno for you, at least not on Linux or HPUX, so this is definitely a real risk.
2000-12-18Updates for 7.1 branding.Bruce Momjian
2000-12-18 - Synced gram.y and preproc.y.Michael Meskes
- Synced keyword.c. - Added several small patches from Christof.
2000-12-18Make sure make_rels_by_clause_joins doesn't return multiple referencesTom Lane
to same joinrel. Although make_rels_by_joins doesn't mind, GEQO has an Assert that doesn't like this.
2000-12-18Tweak regressplans.sh to use any already-set PGOPTIONS.Tom Lane
2000-12-18Repair mishandling of PRIMARY KEY declaration that references anTom Lane
inherited column, per bug report from Elphick 12/15/00.
2000-12-18Clean up backend-exit-time cleanup behavior. Use on_shmem_exit callbacksTom Lane
to ensure that we have released buffer refcounts and so forth, rather than putting ad-hoc operations before (some of the calls to) proc_exit. Add commentary to discourage future hackers from repeating that mistake.
2000-12-17Tweak select_common_type() to deal with possibility of multiple preferredTom Lane
types in a category --- it was taking the last preferred type among the inputs, rather than the first one as intended.
2000-12-16Fix linker options for ODBC driver. See comment inPeter Eisentraut
src/interfaces/odbc/GNUmakefile.
2000-12-16Fix rules to re-generate config.h. The examples in the Autoconf manual arePeter Eisentraut
flawed because the timestamp file is already updated when Makefile.global is remade, and the rule for config.h never gets run.
2000-12-15Remove current->old mapping.Bruce Momjian