Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
51e88821
Commit
51e88821
authored
Jul 14, 2006
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert part of recent include patch not ready for application.
parent
03c2e592
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
19 additions
and
8 deletions
+19
-8
src/interfaces/libpq/fe-auth.c
src/interfaces/libpq/fe-auth.c
+3
-1
src/interfaces/libpq/fe-print.c
src/interfaces/libpq/fe-print.c
+2
-1
src/interfaces/libpq/fe-protocol2.c
src/interfaces/libpq/fe-protocol2.c
+2
-1
src/interfaces/libpq/fe-secure.c
src/interfaces/libpq/fe-secure.c
+3
-1
src/port/strdup.c
src/port/strdup.c
+2
-1
src/timezone/pgtz.c
src/timezone/pgtz.c
+3
-1
src/timezone/strftime.c
src/timezone/strftime.c
+2
-1
src/tutorial/funcs_new.c
src/tutorial/funcs_new.c
+2
-1
No files found.
src/interfaces/libpq/fe-auth.c
View file @
51e88821
...
...
@@ -10,7 +10,7 @@
* exceed INITIAL_EXPBUFFER_SIZE (currently 256 bytes).
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-auth.c,v 1.11
7 2006/07/14 04:44:46
momjian Exp $
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-auth.c,v 1.11
8 2006/07/14 04:59:30
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -48,6 +48,7 @@
#endif
#include "libpq-fe.h"
#include "libpq-int.h"
#include "fe-auth.h"
#include "libpq/md5.h"
...
...
@@ -57,6 +58,7 @@
* MIT Kerberos authentication system - protocol version 5
*/
#include <krb5.h>
/* Some old versions of Kerberos do not include <com_err.h> in <krb5.h> */
#if !defined(__COM_ERR_H) && !defined(__COM_ERR_H__)
#include <com_err.h>
...
...
src/interfaces/libpq/fe-print.c
View file @
51e88821
...
...
@@ -10,7 +10,7 @@
* didn't really belong there.
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-print.c,v 1.
69 2006/07/14 04:44:46
momjian Exp $
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-print.c,v 1.
70 2006/07/14 04:59:30
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -35,6 +35,7 @@
#include "libpq-fe.h"
#include "libpq-int.h"
#include "pqsignal.h"
static
void
do_field
(
const
PQprintOpt
*
po
,
const
PGresult
*
res
,
...
...
src/interfaces/libpq/fe-protocol2.c
View file @
51e88821
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-protocol2.c,v 1.2
3 2006/07/14 04:44:46
momjian Exp $
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-protocol2.c,v 1.2
4 2006/07/14 04:59:30
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -21,6 +21,7 @@
#include "libpq-fe.h"
#include "libpq-int.h"
#include "mb/pg_wchar.h"
#ifdef WIN32
#include "win32.h"
...
...
src/interfaces/libpq/fe-secure.c
View file @
51e88821
...
...
@@ -11,7 +11,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-secure.c,v 1.8
2 2006/07/14 04:44:46
momjian Exp $
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-secure.c,v 1.8
3 2006/07/14 04:59:30
momjian Exp $
*
* NOTES
* [ Most of these notes are wrong/obsolete, but perhaps not all ]
...
...
@@ -84,7 +84,9 @@
#include <ctype.h>
#include "libpq-fe.h"
#include "libpq-int.h"
#include "fe-auth.h"
#include "pqsignal.h"
#ifdef WIN32
#include "win32.h"
...
...
src/port/strdup.c
View file @
51e88821
...
...
@@ -8,13 +8,14 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/port/strdup.c,v 1.1
0 2006/07/14 04:44:46
momjian Exp $
* $PostgreSQL: pgsql/src/port/strdup.c,v 1.1
1 2006/07/14 04:59:30
momjian Exp $
*
*-------------------------------------------------------------------------
*/
#include "c.h"
#include "strdup.h"
char
*
...
...
src/timezone/pgtz.c
View file @
51e88821
...
...
@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/timezone/pgtz.c,v 1.4
1 2006/07/14 04:44:46
momjian Exp $
* $PostgreSQL: pgsql/src/timezone/pgtz.c,v 1.4
2 2006/07/14 04:59:30
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -19,10 +19,12 @@
#include <time.h>
#include "miscadmin.h"
#include "pgtime.h"
#include "pgtz.h"
#include "storage/fd.h"
#include "tzfile.h"
#include "utils/datetime.h"
#include "utils/elog.h"
#include "utils/guc.h"
#include "utils/hsearch.h"
...
...
src/timezone/strftime.c
View file @
51e88821
...
...
@@ -15,7 +15,7 @@
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/timezone/strftime.c,v 1.
9 2006/07/14 04:44:46
momjian Exp $
* $PostgreSQL: pgsql/src/timezone/strftime.c,v 1.
10 2006/07/14 04:59:30
momjian Exp $
*/
#include "postgres.h"
...
...
@@ -24,6 +24,7 @@
#include <locale.h>
#include "private.h"
#include "pgtz.h"
#include "tzfile.h"
...
...
src/tutorial/funcs_new.c
View file @
51e88821
/* $PostgreSQL: pgsql/src/tutorial/funcs_new.c,v 1.
9 2006/07/14 04:44:46
momjian Exp $ */
/* $PostgreSQL: pgsql/src/tutorial/funcs_new.c,v 1.
10 2006/07/14 04:59:30
momjian Exp $ */
/******************************************************************************
These are user-defined functions that can be bound to a Postgres backend
...
...
@@ -13,6 +13,7 @@
#include "postgres.h"
/* general Postgres declarations */
#include "fmgr.h"
/* for argument/result macros */
#include "executor/executor.h"
/* for GetAttributeByName() */
#include "utils/geo_decls.h"
/* for point type */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment