File tree Expand file tree Collapse file tree 14 files changed +37
-37
lines changed
Expand file tree Collapse file tree 14 files changed +37
-37
lines changed Original file line number Diff line number Diff line change 55 * DMN Digital Music Network.
66 * www.dmn.com
77 *
8- * $PostgreSQL: pgsql/contrib/intagg/int_aggregate.c,v 1.24 2006/05/30 22:12:13 tgl Exp $
8+ * $PostgreSQL: pgsql/contrib/intagg/int_aggregate.c,v 1.25 2006/07/11 17:04:12 momjian Exp $
99 *
1010 * Copyright (C) Digital Music Network
1111 * December 20, 2001
2020#include <sys/types.h>
2121
2222#include "access/heapam.h"
23+ #include "access/tupmacs.h"
24+ #include "access/xact.h"
2325#include "catalog/indexing.h"
2426#include "catalog/pg_proc.h"
2527#include "catalog/pg_type.h"
2628#include "executor/executor.h"
27- #include "utils/syscache.h"
28- #include "access/tupmacs.h"
29- #include "access/xact.h"
3029#include "fmgr.h"
3130#include "miscadmin.h"
3231#include "utils/array.h"
3332#include "utils/builtins.h"
3433#include "utils/memutils.h"
34+ #include "utils/syscache.h"
3535#include "utils/lsyscache.h"
3636
3737PG_MODULE_MAGIC ;
Original file line number Diff line number Diff line change 11/*
22 * PostgreSQL definitions for managed Large Objects.
33 *
4- * $PostgreSQL: pgsql/contrib/lo/lo.c,v 1.16 2006/05/30 22:12:13 tgl Exp $
4+ * $PostgreSQL: pgsql/contrib/lo/lo.c,v 1.17 2006/07/11 17:04:12 momjian Exp $
55 *
66 */
77
88#include "postgres.h"
99
10- /* Required for largeobjects */
11- #include "libpq/libpq-fs.h"
12- #include "libpq/be-fsstubs.h"
13-
1410/* Required for SPI */
1511#include "executor/spi.h"
1612
13+ /* Required for largeobjects */
14+ #include "libpq/be-fsstubs.h"
15+ #include "libpq/libpq-fs.h"
16+
1717/* Required for triggers */
1818#include "commands/trigger.h"
1919
Original file line number Diff line number Diff line change 99 *
1010 *
1111 * IDENTIFICATION
12- * $PostgreSQL: pgsql/src/backend/access/common/indextuple.c,v 1.76 2006/03/05 15:58:20 momjian Exp $
12+ * $PostgreSQL: pgsql/src/backend/access/common/indextuple.c,v 1.77 2006/07/11 17:04:12 momjian Exp $
1313 *
1414 *-------------------------------------------------------------------------
1515 */
1616
1717#include "postgres.h"
1818
1919#include "access/heapam.h"
20- #include "access/tuptoaster.h"
2120#include "access/itup.h"
21+ #include "access/tuptoaster.h"
2222#include "catalog/pg_type.h"
2323
2424
Original file line number Diff line number Diff line change 88 * Portions Copyright (c) 1994, Regents of the University of California
99 *
1010 * IDENTIFICATION
11- * $PostgreSQL: pgsql/src/backend/access/gin/ginarrayproc.c,v 1.1 2006/05/02 11:28:54 teodor Exp $
11+ * $PostgreSQL: pgsql/src/backend/access/gin/ginarrayproc.c,v 1.2 2006/07/11 17:04:12 momjian Exp $
1212 *-------------------------------------------------------------------------
1313 */
1414
1919#include "miscadmin.h"
2020#include "storage/freespace.h"
2121#include "utils/array.h"
22+ #include "utils/builtins.h"
2223#include "utils/lsyscache.h"
2324#include "utils/syscache.h"
2425#include "utils/typcache.h"
25- #include "utils/builtins.h"
2626#include "access/gin.h"
2727
2828#define GinOverlapStrategy 1
Original file line number Diff line number Diff line change 88 * Portions Copyright (c) 1994, Regents of the University of California
99 *
1010 * IDENTIFICATION
11- * $PostgreSQL: pgsql/src/backend/access/gin/ginvacuum.c,v 1.2 2006/05/02 22:25:10 tgl Exp $
11+ * $PostgreSQL: pgsql/src/backend/access/gin/ginvacuum.c,v 1.3 2006/07/11 17:04:12 momjian Exp $
1212 *-------------------------------------------------------------------------
1313 */
1414
1919#include "catalog/index.h"
2020#include "miscadmin.h"
2121#include "storage/freespace.h"
22- #include "utils/memutils.h"
2322#include "storage/freespace.h"
2423#include "storage/smgr.h"
24+ #include "utils/memutils.h"
2525#include "commands/vacuum.h"
2626
2727typedef struct {
Original file line number Diff line number Diff line change 88 * Portions Copyright (c) 1994, Regents of the University of California
99 *
1010 * IDENTIFICATION
11- * $PostgreSQL: pgsql/src/backend/access/gist/gistget.c,v 1.58 2006/06/28 12:00:14 teodor Exp $
11+ * $PostgreSQL: pgsql/src/backend/access/gist/gistget.c,v 1.59 2006/07/11 17:04:12 momjian Exp $
1212 *
1313 *-------------------------------------------------------------------------
1414 */
1515#include "postgres.h"
1616
17- #include "access/itup.h"
1817#include "access/gist_private.h"
18+ #include "access/itup.h"
1919#include "executor/execdebug.h"
2020#include "pgstat.h"
2121#include "utils/memutils.h"
Original file line number Diff line number Diff line change 88 * Portions Copyright (c) 1994, Regents of the University of California
99 *
1010 * IDENTIFICATION
11- * $PostgreSQL: pgsql/src/backend/access/gist/gistvacuum.c,v 1.23 2006/07/02 02:23:18 momjian Exp $
11+ * $PostgreSQL: pgsql/src/backend/access/gist/gistvacuum.c,v 1.24 2006/07/11 17:04:12 momjian Exp $
1212 *
1313 *-------------------------------------------------------------------------
1414 */
2121#include "catalog/index.h"
2222#include "commands/vacuum.h"
2323#include "miscadmin.h"
24- #include "utils/memutils.h"
2524#include "storage/freespace.h"
25+ #include "utils/memutils.h"
2626#include "storage/smgr.h"
2727
2828
Original file line number Diff line number Diff line change 4242 * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
4343 * Portions Copyright (c) 1994, Regents of the University of California
4444 *
45- * $PostgreSQL: pgsql/src/backend/access/transam/multixact.c,v 1.17 2006/03/24 04:32:12 tgl Exp $
45+ * $PostgreSQL: pgsql/src/backend/access/transam/multixact.c,v 1.18 2006/07/11 17: 04:13 momjian Exp $
4646 *
4747 *-------------------------------------------------------------------------
4848 */
5252#include "access/slru.h"
5353#include "access/xact.h"
5454#include "miscadmin.h"
55- #include "utils/memutils.h"
5655#include "storage/backendid.h"
5756#include "storage/lmgr.h"
57+ #include "utils/memutils.h"
5858#include "storage/procarray.h"
5959
6060
Original file line number Diff line number Diff line change 88 *
99 *
1010 * IDENTIFICATION
11- * $PostgreSQL: pgsql/src/backend/catalog/heap.c,v 1.306 2006/07/10 16:20:49 alvherre Exp $
11+ * $PostgreSQL: pgsql/src/backend/catalog/heap.c,v 1.307 2006/07/11 17:04:13 momjian Exp $
1212 *
1313 *
1414 * INTERFACE ROUTINES
2929 */
3030#include "postgres.h"
3131
32- #include "access/heapam.h"
3332#include "access/genam.h"
33+ #include "access/heapam.h"
3434#include "catalog/catalog.h"
3535#include "catalog/dependency.h"
3636#include "catalog/heap.h"
Original file line number Diff line number Diff line change 88 *
99 *
1010 * IDENTIFICATION
11- * $PostgreSQL: pgsql/src/backend/commands/indexcmds.c,v 1.143 2006/07/03 22:45:38 tgl Exp $
11+ * $PostgreSQL: pgsql/src/backend/commands/indexcmds.c,v 1.144 2006/07/11 17:04:13 momjian Exp $
1212 *
1313 *-------------------------------------------------------------------------
1414 */
3232#include "mb/pg_wchar.h"
3333#include "miscadmin.h"
3434#include "optimizer/clauses.h"
35- #include "parser/parsetree.h"
3635#include "parser/parse_coerce.h"
3736#include "parser/parse_expr.h"
3837#include "parser/parse_func.h"
38+ #include "parser/parsetree.h"
3939#include "utils/acl.h"
4040#include "utils/builtins.h"
4141#include "utils/fmgroids.h"
You can’t perform that action at this time.
<
918
path d="M5 1.75C5 .784 5.784 0 6.75 0h7.5C15.216 0 16 .784 16 1.75v7.5A1.75 1.75 0 0 1 14.25 11h-7.5A1.75 1.75 0 0 1 5 9.25Zm1.75-.25a.25.25 0 0 0-.25.25v7.5c0 .138.112.25.25.25h7.5a.25.25 0 0 0 .25-.25v-7.5a.25.25 0 0 0-.25-.25Z">
0 commit comments