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
b9188c30
Commit
b9188c30
authored
Sep 01, 1997
by
Vadim B. Mikheev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
trigger_dynamic()->handle_load() func for loading SPI-triggers
parent
c67208b3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
1 deletion
+13
-1
src/backend/utils/fmgr/dfmgr.c
src/backend/utils/fmgr/dfmgr.c
+13
-1
No files found.
src/backend/utils/fmgr/dfmgr.c
View file @
b9188c30
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/fmgr/dfmgr.c,v 1.
8 1997/08/12 20:16:09 momjian
Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/fmgr/dfmgr.c,v 1.
9 1997/09/01 08:06:17 vadim
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -46,6 +46,8 @@ static int pronargs_save;
static
func_ptr
user_fn_save
=
(
func_ptr
)
NULL
;
static
func_ptr
handle_load
(
char
*
filename
,
char
*
funcname
);
func_ptr
trigger_dynamic
(
char
*
filename
,
char
*
funcname
);
func_ptr
fmgr_dynamic
(
Oid
procedureId
,
int
*
pronargs
)
{
...
...
@@ -261,3 +263,13 @@ load_file(char *filename)
}
handle_load
(
filename
,
(
char
*
)
NULL
);
}
func_ptr
trigger_dynamic
(
char
*
filename
,
char
*
funcname
)
{
func_ptr
trigger_fn
;
trigger_fn
=
handle_load
(
filename
,
funcname
);
return
(
trigger_fn
);
}
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