summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)Author
2015-02-19Fix Perl coding error in msvc build systemPeter Eisentraut
2015-02-18Fix opclass/opfamily identity stringsAlvaro Herrera
2015-02-18Fix object identities for pg_conversion objectsAlvaro Herrera
2015-02-18Fix placement of "SET row_security" command issuance in pg_dump.Tom Lane
2015-02-18Fix failure to honor -Z compression level option in pg_dump -Fd.Tom Lane
2015-02-17Fix EXPLAIN output for cases where parent table is excluded by constraints.Tom Lane
2015-02-17Fix a bug in pairing heap removal code.Heikki Linnakangas
2015-02-17Fix knn-GiST queue comparison function to return heap tuples first.Heikki Linnakangas
2015-02-17Remove code to match IPv4 pg_hba.conf entries to IPv4-in-IPv6 addresses.Tom Lane
2015-02-17Improve pg_check_dir code and comments.Robert Haas
2015-02-16Fix misuse of memcpy() in check_ip().Tom Lane
2015-02-16Fix comment in libpq OpenSSL code about why a substitue BIO is used.Heikki Linnakangas
2015-02-16Restore the SSL_set_session_id_context() call to OpenSSL renegotiation.Heikki Linnakangas
2015-02-16Use fast path in plpgsql's RETURN/RETURN NEXT in more cases.Tom Lane
2015-02-16In the SSL test suite, use a root CA cert that won't expire (so quickly)Heikki Linnakangas
2015-02-16Rationalize the APIs of array element/slice access functions.Tom Lane
2015-02-16Fix null-pointer-deref crash while doing COPY IN with check constraints.Tom Lane
2015-02-15pg_regress: Write processed input/*.source into output dirPeter Eisentraut
2015-02-13Fix broken #ifdef for __sparcv8Heikki Linnakangas
2015-02-13Simplify waiting logic in reading from / writing to client.Heikki Linnakangas
2015-02-13Simplify the way OpenSSL renegotiation is initiated in server.Heikki Linnakangas
2015-02-12pg_upgrade: preserve freeze info for postgres/template1 dbsBruce Momjian
2015-02-12Fix missing PQclear() in libpqrcv_endstreaming().Tom Lane
2015-02-12Fix minor memory leak in ident_inet().Tom Lane
2015-02-11Fix more memory leaks in failure path in buildACLCommands.Tom Lane
2015-02-11Fix pg_dump's heuristic for deciding which casts to dump.Tom Lane
2015-02-11Fix GEQO to not assume its join order heuristic always works.Tom Lane
2015-02-10Fixed array handling in ecpg.Michael Meskes
2015-02-10Speed up CRC calculation using slicing-by-8 algorithm.Heikki Linnakangas
2015-02-09Fix MSVC build.Heikki Linnakangas
2015-02-09Minor cleanup/code review for "indirect toast" stuff.Tom Lane
2015-02-09Move pg_crc.c to src/common, and remove pg_crc_tables.hHeikki Linnakangas
2015-02-09Move pg_lzcompress.c to src/common.Fujii Masao
2015-02-07Check DCH_MAX_ITEM_SIZ limits with <=, not <.Noah Misch
2015-02-07Assert(PqCommReadingMsg) in pq_peekbyte().Noah Misch
2015-02-06Report WAL flush, not insert, position in replication IDENTIFY_SYSTEMHeikki Linnakangas
2015-02-05This routine was calling ecpg_alloc to allocate to memory but did notMichael Meskes
2015-02-04Use a separate memory context for GIN scan keys.Heikki Linnakangas
2015-02-04Fix reference-after-free when waiting for another xact due to constraint.Heikki Linnakangas
2015-02-04Fix memory leaks on OOM in ecpg.Heikki Linnakangas
2015-02-04Add missing float.h include to snprintf.c.Andres Freund
2015-02-04Add dummy PQsslAttributes function for non-SSL builds.Heikki Linnakangas
2015-02-03Remove ill-conceived Assertion in ProcessClientWriteInterrupt().Andres Freund
2015-02-03Remove remnants of ImmediateInterruptOK handling.Andres Freund
2015-02-03Remove the option to service interrupts during PGSemaphoreLock().Andres Freund
2015-02-03Move deadlock and other interrupt handling in proc.c out of signal handlers.Andres Freund
2015-02-03Don't allow immediate interrupts during authentication anymore.Andres Freund
2015-02-03Remove unused "m" field in LSEG.Tom Lane
2015-02-03Process 'die' interrupts while reading/writing from the client socket.Andres Freund
2015-02-03Introduce and use infrastructure for interrupt processing during client reads.Andres Freund