summaryrefslogtreecommitdiff
path: root/src/backend/utils
AgeCommit message (Expand)Author
2017-10-06Basic partition-wise join functionality.Robert Haas
2017-10-05Document and use SPI_result_code_string()Peter Eisentraut
2017-10-05Move SPI error reporting out of ri_ReportViolation()Peter Eisentraut
2017-10-04Replace binary search in fmgr_isbuiltin with a lookup array.Andres Freund
2017-09-30Support arrays over domains.Tom Lane
2017-09-29Add background worker typePeter Eisentraut
2017-09-29Remove replacement selection sort.Robert Haas
2017-09-27Fix behavior when converting a float infinity to numeric.Tom Lane
2017-09-27Revert to 9.6 treatment of ALTER TYPE enumtype ADD VALUE.Tom Lane
2017-09-26Remove heuristic same-transaction test from check_safe_enum_use().Tom Lane
2017-09-26Use a blacklist to distinguish original from add-on enum values.Tom Lane
2017-09-25Make construct_[md_]array return a valid empty array for zero-size input.Tom Lane
2017-09-24Allow ICU to use SortSupport on Windows with UTF-8Peter Eisentraut
2017-09-23Refactor new file permission handlingPeter Eisentraut
2017-09-22Assume wcstombs(), towlower(), and sibling functions are always present.Tom Lane
2017-09-22Fix build with !USE_WIDE_UPPER_LOWERPeter Eisentraut
2017-09-20Improve dubious memory management in pg_newlocale_from_collation().Tom Lane
2017-09-20Make WAL segment size configurable at initdb time.Andres Freund
2017-09-20Remove no-op GiST support functions in the core GiST opclasses.Tom Lane
2017-09-19Speedup pgstat_report_activity by moving mb-aware truncation to read side.Andres Freund
2017-09-19Cache datatype-output-function lookup info across calls of concat().Tom Lane
2017-09-18Make DatumGetFoo/PG_GETARG_FOO/PG_RETURN_FOO macro names more consistent.Tom Lane
2017-09-17Fix bogus size calculation introduced by commit cc5f81366.Tom Lane
2017-09-15Apply pg_get_serial_sequence() to identity column sequences as wellPeter Eisentraut
2017-09-15Get rid of shared_record_typmod_registry_worker_detach; it doesn't work.Tom Lane
2017-09-15Don't use anonymous unions.Tom Lane
2017-09-15Add support for coordinating record typmods among parallel workers.Andres Freund
2017-09-13Distinguish selectivity of < from <= and > from >=.Tom Lane
2017-09-12Introduce BYTES unit for GUCs.Andres Freund
2017-09-11Constify numeric.c.Andres Freund
2017-09-11Message style fixesPeter Eisentraut
2017-09-08Allow a partitioned table to have a default partition.Robert Haas
2017-09-08Remove mention of password_encryption = plain in postgresql.conf.sample.Tom Lane
2017-09-07Improve performance of get_actual_variable_range with recently-dead tuples.Tom Lane
2017-09-07Reduce excessive dereferencing of function pointersPeter Eisentraut
2017-09-06Allow SET STATISTICS on expression indexesSimon Riggs
2017-09-06Clean up handling of dropped columns in NAMEDTUPLESTORE RTEs.Tom Lane
2017-09-05Remove unnecessary parentheses in return statementsPeter Eisentraut
2017-09-01Fix assorted carelessness about Datum vs. int64 vs. uint64Robert Haas
2017-09-01Try to repair poorly-considered code in previous commit.Robert Haas
2017-09-01Introduce 64-bit hash functions with a 64-bit seed.Robert Haas
2017-08-29Propagate sort instrumentation from workers back to leader.Robert Haas
2017-08-24Fix harmless thinko in dsa.c.Andres Freund
2017-08-22Refactor typcache.c's record typmod hash table.Andres Freund
2017-08-20Change tupledesc->attrs[n] to TupleDescAttr(tupledesc, n).Andres Freund
2017-08-16Make the planner assume that the entries in a VALUES list are distinct.Tom Lane
2017-08-16Fix up some misusage of appendStringInfo() and friendsPeter Eisentraut
2017-08-15Avoid out-of-memory in a hash join with many duplicate inner keys.Tom Lane
2017-08-15Assorted preparatory refactoring for partition-wise join.Robert Haas
2017-08-14Final pgindent + perltidy run for v10.Tom Lane