uw7-2.patch
application/x-patch
Patch
Same data as JSON:
GET /api/v1/attachments/:id/patch
the parsed metadata as JSON — format, series position, per-file stats; never the diff bytes.
API reference →
Format: context
| File | + | − |
|---|---|---|
| src/configure.in | 3 | 0 |
| src/pl/plpgsql/test/mklang.sql.in | 14 | 0 |
| src/pl/tcl/mklang.sql.in | 14 | 0 |
| src/pl/tcl/test/test_mklang.sql.in | 9 | 0 |
*** src/pl/plpgsql/test/mklang.sql.in.orig Fri Oct 23 23:44:39 1998 --- src/pl/plpgsql/test/mklang.sql.in Fri Oct 23 23:44:00 1998 *************** *** 0 **** --- 1,14 ---- + -- + -- PL/pgSQL language declaration + -- + -- $Header: /usr/local/cvsroot/pgsql/src/pl/plpgsql/src/mklang.sql.in,v 1.1 1998/10/12 04:55:03 momjian Exp $ + -- + + create function plpgsql_call_handler() returns opaque + as '@libdir@/plpgsql.so' + language 'C'; + + create trusted procedural language 'plpgsql' + handler plpgsql_call_handler + lancompiler 'PL/pgSQL'; + *** src/pl/tcl/test/test_mklang.sql.in.orig Fri Oct 23 23:46:14 1998 --- src/pl/tcl/test/test_mklang.sql.in Sat Oct 24 00:18:35 1998 *************** *** 0 **** --- 1,9 ---- + + create function pltcl_call_handler() returns opaque + as '@libdir@/pltcl.so' + language 'C'; + + create trusted procedural language 'pltcl' + handler pltcl_call_handler + lancompiler 'PL/Tcl'; + *** src/pl/tcl/mklang.sql.in.orig Sat Oct 24 00:20:31 1998 --- src/pl/tcl/mklang.sql.in Sat Oct 24 00:18:23 1998 *************** *** 0 **** --- 1,14 ---- + -- + -- PL/TCL language declaration + -- + -- ## Insert RCS Header Here ## + -- + + create function pltcl_call_handler() returns opaque + as '@libdir@/pltcl.so' + language 'C'; + + create trusted procedural language 'pltcl' + handler pltcl_call_handler + lancompiler 'PL/Tcl'; + *** src/configure.in.orig Fri Oct 23 23:42:40 1998 --- src/configure.in Fri Oct 23 23:56:13 1998 *************** *** 954,958 **** --- 954,961 ---- interfaces/odbc/Makefile.global pl/plpgsql/src/Makefile pl/plpgsql/src/mklang.sql + pl/plpgsql/test/mklang.sql pl/tcl/mkMakefile.tcldefs.sh + pl/tcl/mklang.sql + pl/tcl/test/test_mklang.sql )