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
a7f07473
Commit
a7f07473
authored
Mar 22, 2004
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adds DLLIMPORT modifier to check_function_bodies
Claudio Natoli
parent
08c0aa72
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
src/backend/utils/misc/guc.c
src/backend/utils/misc/guc.c
+2
-2
src/pl/plpgsql/src/pl_handler.c
src/pl/plpgsql/src/pl_handler.c
+2
-2
No files found.
src/backend/utils/misc/guc.c
View file @
a7f07473
...
...
@@ -10,7 +10,7 @@
* Written by Peter Eisentraut <peter_e@gmx.net>.
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.19
0 2004/03/15 15:56:24
momjian Exp $
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.19
1 2004/03/22 03:15:29
momjian Exp $
*
*--------------------------------------------------------------------
*/
...
...
@@ -66,7 +66,7 @@
/* XXX these should appear in other modules' header files */
extern
bool
Log_connections
;
extern
bool
Log_disconnections
;
extern
bool
check_function_bodies
;
extern
DLLIMPORT
bool
check_function_bodies
;
extern
int
PreAuthDelay
;
extern
int
AuthenticationTimeout
;
extern
int
CheckPointTimeout
;
...
...
src/pl/plpgsql/src/pl_handler.c
View file @
a7f07473
...
...
@@ -3,7 +3,7 @@
* procedural language
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_handler.c,v 1.2
0 2004/03/19 18:58:07 tgl
Exp $
* $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_handler.c,v 1.2
1 2004/03/22 03:15:33 momjian
Exp $
*
* This software is copyrighted by Jan Wieck - Hamburg.
*
...
...
@@ -45,7 +45,7 @@
#include "utils/lsyscache.h"
#include "utils/syscache.h"
extern
bool
check_function_bodies
;
extern
DLLIMPORT
bool
check_function_bodies
;
static
int
plpgsql_firstcall
=
1
;
...
...
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