File tree 8 files changed +19
-8
lines changed
8 files changed +19
-8
lines changed Original file line number Diff line number Diff line change 10
10
* exceed INITIAL_EXPBUFFER_SIZE (currently 256 bytes).
11
11
*
12
12
* IDENTIFICATION
13
- * $PostgreSQL: pgsql/src/interfaces/libpq/fe-auth.c,v 1.117 2006/07/14 04:44:46 momjian Exp $
13
+ * $PostgreSQL: pgsql/src/interfaces/libpq/fe-auth.c,v 1.118 2006/07/14 04:59:30 momjian Exp $
14
14
*
15
15
*-------------------------------------------------------------------------
16
16
*/
48
48
#endif
49
49
50
50
#include "libpq-fe.h"
51
+ #include "libpq-int.h"
51
52
#include "fe-auth.h"
52
53
#include "libpq/md5.h"
53
54
57
58
* MIT Kerberos authentication system - protocol version 5
58
59
*/
59
60
61
+ #include <krb5.h>
60
62
/* Some old versions of Kerberos do not include <com_err.h> in <krb5.h> */
61
63
#if !defined(__COM_ERR_H ) && !defined(__COM_ERR_H__ )
62
64
#include <com_err.h>
Original file line number Diff line number Diff line change 10
10
* didn't really belong there.
11
11
*
12
12
* IDENTIFICATION
13
- * $PostgreSQL: pgsql/src/interfaces/libpq/fe-print.c,v 1.69 2006/07/14 04:44:46 momjian Exp $
13
+ * $PostgreSQL: pgsql/src/interfaces/libpq/fe-print.c,v 1.70 2006/07/14 04:59:30 momjian Exp $
14
14
*
15
15
*-------------------------------------------------------------------------
16
16
*/
35
35
36
36
#include "libpq-fe.h"
37
37
#include "libpq-int.h"
38
+ #include "pqsignal.h"
38
39
39
40
40
41
static void do_field (const PQprintOpt * po , const PGresult * res ,
Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/interfaces/libpq/fe-protocol2.c,v 1.23 2006/07/14 04:44:46 momjian Exp $
11
+ * $PostgreSQL: pgsql/src/interfaces/libpq/fe-protocol2.c,v 1.24 2006/07/14 04:59:30 momjian Exp $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
21
21
#include "libpq-fe.h"
22
22
#include "libpq-int.h"
23
23
24
+ #include "mb/pg_wchar.h"
24
25
25
26
#ifdef WIN32
26
27
#include "win32.h"
Original file line number Diff line number Diff line change 11
11
*
12
12
*
13
13
* IDENTIFICATION
14
- * $PostgreSQL: pgsql/src/interfaces/libpq/fe-secure.c,v 1.82 2006/07/14 04:44:46 momjian Exp $
14
+ * $PostgreSQL: pgsql/src/interfaces/libpq/fe-secure.c,v 1.83 2006/07/14 04:59:30 momjian Exp $
15
15
*
16
16
* NOTES
17
17
* [ Most of these notes are wrong/obsolete, but perhaps not all ]
84
84
#include <ctype.h>
85
85
86
86
#include "libpq-fe.h"
87
+ #include "libpq-int.h"
87
88
#include "fe-auth.h"
89
+ #include "pqsignal.h"
88
90
89
91
#ifdef WIN32
90
92
#include "win32.h"
Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/port/strdup.c,v 1.10 2006/07/14 04:44:46 momjian Exp $
11
+ * $PostgreSQL: pgsql/src/port/strdup.c,v 1.11 2006/07/14 04:59:30 momjian Exp $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
15
15
16
16
#include "c.h"
17
17
18
+ #include "strdup.h"
18
19
19
20
20
21
char *
Original file line number Diff line number Diff line change 6
6
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
7
7
*
8
8
* IDENTIFICATION
9
- * $PostgreSQL: pgsql/src/timezone/pgtz.c,v 1.41 2006/07/14 04:44:46 momjian Exp $
9
+ * $PostgreSQL: pgsql/src/timezone/pgtz.c,v 1.42 2006/07/14 04:59:30 momjian Exp $
10
10
*
11
11
*-------------------------------------------------------------------------
12
12
*/
19
19
#include <time.h>
20
20
21
21
#include "miscadmin.h"
22
+ #include "pgtime.h"
22
23
#include "pgtz.h"
23
24
#include "storage/fd.h"
24
25
#include "tzfile.h"
25
26
#include "utils/datetime.h"
27
+ #include "utils/elog.h"
26
28
#include "utils/guc.h"
27
29
#include "utils/hsearch.h"
28
30
Original file line number Diff line number Diff line change 15
15
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
16
16
*
17
17
* IDENTIFICATION
18
- * $PostgreSQL: pgsql/src/timezone/strftime.c,v 1.9 2006/07/14 04:44:46 momjian Exp $
18
+ * $PostgreSQL: pgsql/src/timezone/strftime.c,v 1.10 2006/07/14 04:59:30 momjian Exp $
19
19
*/
20
20
21
21
#include "postgres.h"
24
24
#include <locale.h>
25
25
26
26
#include "private.h"
27
+ #include "pgtz.h"
27
28
#include "tzfile.h"
28
29
29
30
Original file line number Diff line number Diff line change 1
- /* $PostgreSQL: pgsql/src/tutorial/funcs_new.c,v 1.9 2006/07/14 04:44:46 momjian Exp $ */
1
+ /* $PostgreSQL: pgsql/src/tutorial/funcs_new.c,v 1.10 2006/07/14 04:59:30 momjian Exp $ */
2
2
3
3
/******************************************************************************
4
4
These are user-defined functions that can be bound to a Postgres backend
13
13
14
14
#include "postgres.h" /* general Postgres declarations */
15
15
16
+ #include "fmgr.h" /* for argument/result macros */
16
17
#include "executor/executor.h" /* for GetAttributeByName() */
17
18
#include "utils/geo_decls.h" /* for point type */
18
19
You can’t perform that action at this time.
0 commit comments