summaryrefslogtreecommitdiff
path: root/contrib/dblink
Commit message (Expand)AuthorAgeFilesLines
* Move Trigger and TriggerDesc structs out of rel.h into a new reltrigger.hAlvaro Herrera2011-07-041-0/+1
* Async dblink functions require a named connection, and therefore shouldJoe Conway2011-06-251-6/+3
* Support "make check" in contribPeter Eisentraut2011-04-251-0/+2
* Avoid use of CREATE OR REPLACE FUNCTION in extension installation files.Tom Lane2011-02-131-40/+40
* Convert contrib modules to use the extension facility.Tom Lane2011-02-138-120/+55
* Stamp copyrights for year 2011.Bruce Momjian2011-01-012-2/+2
* Don't raise "identifier will be truncated" messages in dblinkItagaki Takahiro2010-11-251-2/+2
* Remove useless whitespace at end of linesPeter Eisentraut2010-11-234-12/+12
* Expose quote_literal_cstr() from core.Robert Haas2010-11-201-20/+0
* Improved parallel make supportPeter Eisentraut2010-11-121-0/+1
* Some more gitignore cleanups: cover contrib and PL regression test outputs.Tom Lane2010-09-221-0/+2
* Convert cvsignore to gitignore, and add .gitignore for build targets.Magnus Hagander2010-09-221-0/+1
* Remove cvs keywords from all files.Magnus Hagander2010-09-205-5/+5
* pgindent run for 9.0, second runBruce Momjian2010-07-061-10/+10
* Change the interpretation of the primary_key_attnums parameter ofTom Lane2010-06-153-11/+33
* Fix dblink_build_sql_insert() and related functions to handle droppedTom Lane2010-06-153-32/+101
* Consolidate and improve checking of key-column-attnum arguments forTom Lane2010-06-152-121/+92
* Rearrange dblink's dblink_build_sql_insert() and related routines to open andTom Lane2010-06-141-126/+83
* Avoid "identifier will be truncated" warning in dblinkItagaki Takahiro2010-06-091-2/+2
* Fix connection leak in dblink when dblink_connect() or dblink_connect_u()Itagaki Takahiro2010-06-091-1/+6
* Add missed function dblink_connect_u(text[,text]) to uninstall scriptTeodor Sigaev2010-06-071-1/+5
* Fix dblink to treat connection names longer than NAMEDATALEN-2 (62 bytes).Itagaki Takahiro2010-06-031-13/+15
* pgindent run for 9.0Bruce Momjian2010-02-261-51/+50
* Remove useless codes to initialize TupleDesc from dblink_exec.Itagaki Takahiro2010-02-241-12/+1
* Wrap calls to SearchSysCache and related functions using macros.Robert Haas2010-02-141-4/+2
* Check to ensure the number of primary key fields supplied does notJoe Conway2010-02-033-1/+72
* Rewrite dblink_record_internal() and dblink_fetch() to use a tuplestoreJoe Conway2010-01-241-337/+232
* Update copyright for the year 2010.Bruce Momjian2010-01-022-4/+4
* Previous fix for temporary file management broke returning a set fromHeikki Linnakangas2009-12-291-4/+1
* Improve psql's tabular display of wrapped-around data by inserting markersTom Lane2009-11-221-10/+10
* plug dblink resource leakJoe Conway2009-09-121-2/+2
* Implement dblink_get_notify().Joe Conway2009-08-056-4/+179
* 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian2009-06-111-130/+129
* Restore dblink_current_query() to being a C-language function, so as to notTom Lane2009-06-093-5/+20
* Default client encoding to server encoding for dblink connections. AddressesJoe Conway2009-06-091-1/+6
* Add support for using SQL/MED compliant FOREIGN DATA WRAPPER, SERVER,Joe Conway2009-06-063-4/+168
* Fix dblink_get_result() as reported by Oleksiy Shchukin. Refactor a bitJoe Conway2009-06-021-35/+30
* Update copyright for 2009.Bruce Momjian2009-01-012-4/+4
* Fix dblink and tablefunc to not return with the wrong CurrentMemoryContext.Tom Lane2008-11-301-16/+28
* Fix dblink_connect() so that it verifies that a password is supplied in theTom Lane2008-09-221-2/+47
* When an ERROR happens on a dblink remote connection, takeJoe Conway2008-07-032-94/+95
* Improve hash_any() to use word-wide fetches when hashing suitably alignedTom Lane2008-04-062-6/+22
* Make dblink_current_query() reference pg_catalog.current_query(), per Tom.Bruce Momjian2008-04-051-2/+2
* Re-add dblink_current_query() for backward compatibility.Bruce Momjian2008-04-052-2/+9
* Remove unneed #include now that current_query() has moved to the backend.Bruce Momjian2008-04-041-2/+1
* Implement current_query(), that shows the currently executing query.Bruce Momjian2008-04-046-39/+4
* Move the HTSU_Result enum definition into snapshot.h, to avoid includingAlvaro Herrera2008-03-261-3/+4
* Simplify and standardize conversions between TEXT datums and ordinary CTom Lane2008-03-251-69/+68
* Use an indexscan not a heapscan to search pg_index in get_pkey_attnames.Tom Lane2008-01-141-12/+17
* The original patch to disallow non-passworded connections to non-superusersTom Lane2008-01-033-38/+86