summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)Author
2009-01-05Quiet repeated "loaded library" messages from child backends that are justTom Lane
2009-01-05Fix define_custom_variable to preserve any sourcefile/sourceline informationTom Lane
2009-01-05When cross-compiling, allow and require an external zic program to be usedPeter Eisentraut
2009-01-05Fix for cross-compilation between mingw32 and something else. The choicePeter Eisentraut
2009-01-05Allow out-of-tree builds on mingw and cygwinPeter Eisentraut
2009-01-05Export IsUnderPostmaster on win32.Alvaro Herrera
2009-01-04Add contrib/pg_stat_statements for server-wide tracking of statement executionTom Lane
2009-01-04Add a pg_encoding_mbcliplen() function that is just like pg_mbcliplen()Tom Lane
2009-01-04Fix embarrassing bug in recent smgr refactoring patch: WAL records shouldHeikki Linnakangas
2009-01-03Allow loadable modules to create PGC_POSTMASTER GUC variables, but onlyTom Lane
2009-01-03Create a "shmem_startup_hook" to be called at the end of shared memoryTom Lane
2009-01-02Include a pointer to the query's source text in QueryDesc structs. This isTom Lane
2009-01-02Initialize .pot files with some useful default values.Peter Eisentraut
2009-01-02Split the ecpg translation support into a separate catalog for the ecpgPeter Eisentraut
2009-01-02Fix cut/paste error that caused all errors from REQUIRE_AUTH_OPTION to sayMagnus Hagander
2009-01-02Remove comments that say restart is required for changing of KerberosMagnus Hagander
2009-01-02Make it possible to change Kerberos/GSSAPI parameters without restartingMagnus Hagander
2009-01-02write_nondefault_variables must take care to write custom_variable_classesTom Lane
2009-01-02Tweak guc.c to allow underscores in the names of custom variable classes,Tom Lane
2009-01-01Be smarter --- accept missing comma, and force comma if missing.Bruce Momjian
2009-01-01Mention src/interfaces/libpq/libpq.rc.in needs to be updated forBruce Momjian
2009-01-01Make comma optional for copyright text change.Bruce Momjian
2009-01-01Fix a couple of missed copyright dates.Tom Lane
2009-01-01Update copyright for 2009.Bruce Momjian
2009-01-01Fix an oversight in my patch of a couple weeks ago that ensured a snapshotTom Lane
2008-12-31Throw error if a <window definition> references a window that already has aTom Lane
2008-12-31Fix another problem in SQL-MED \d displays: should have a clean failureTom Lane
2008-12-31Consistently use multi-line formatting for all ACL columns printed by psql'sTom Lane
2008-12-31Add a WINDOW attribute to CREATE FUNCTION, and teach pg_dump about it,Tom Lane
2008-12-31Add some basic support for window frame clauses to the window-functionsTom Lane
2008-12-30Reduce the last group of parallel regression tests to 19 tests, per failureTom Lane
2008-12-30The flag to mark dead tuples is nowadays called LP_DEAD, not LP_DELETE.Heikki Linnakangas
2008-12-30Fix oversight in ALTER TABLE ENABLE/DISABLE RULE patch: the new enabledTom Lane
2008-12-29Finally the last test.Michael Meskes
2008-12-29First rounf of whitespace changes. Everything but connect-test1 should be fine.Michael Meskes
2008-12-29Tighten up a couple of regression test cases that can have platform-dependentTom Lane
2008-12-28Support window functions a la SQL:2008.Tom Lane
2008-12-27Make a couple of small changes to the tuplestore API, for the benefit of theTom Lane
2008-12-26Remove unused include file, per ITAGAKI Takahiro. AFAICT this has beenTom Lane
2008-12-24Change the name of dtrace wal tracepoints:Bruce Momjian
2008-12-20Teach MSVC build system about building foreign data wrappers.Magnus Hagander
2008-12-20Add missing semicolon, per buildfarm results. Martin PihlakTom Lane
2008-12-20Fix various confusions of pointers and OIDs, unsafe assumptions about nulls,Tom Lane
2008-12-20Don't use OidIsValid to check the return value of transformGenericOptions,Heikki Linnakangas
2008-12-19Add a new column proiswindow to pg_proc. It doesn't actually do anythingTom Lane
2008-12-19SQL/MED catalog manipulation facilitiesPeter Eisentraut
2008-12-19Have psql's \d+ print reloptions. Extracted from Euler Taveira de Oliveira'sAlvaro Herrera
2008-12-19When we added the ability to have zero-element ARRAY[] constructs by adding anTom Lane
2008-12-18Fix oversight in my recent patch to allow ExecMakeFunctionResult to handleTom Lane
2008-12-18Code review for function default parameters patch. Fix numerous problems asTom Lane