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
304750f8
Commit
304750f8
authored
Sep 28, 2007
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update TCL comment:
* We can only fix this with Tcl >= 8.4, when Tcl_SetNotifier()
parent
70b9b9b7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
src/pl/tcl/pltcl.c
src/pl/tcl/pltcl.c
+4
-4
No files found.
src/pl/tcl/pltcl.c
View file @
304750f8
...
...
@@ -2,7 +2,7 @@
* pltcl.c - PostgreSQL support for Tcl as
* procedural language (PL)
*
* $PostgreSQL: pgsql/src/pl/tcl/pltcl.c,v 1.11
3 2007/09/21 00:30:49 tgl
Exp $
* $PostgreSQL: pgsql/src/pl/tcl/pltcl.c,v 1.11
4 2007/09/28 22:33:20 momjian
Exp $
*
**********************************************************************/
...
...
@@ -176,9 +176,9 @@ static void pltcl_build_tuple_argument(HeapTuple tuple, TupleDesc tupdesc,
* from Postgres, so the notifier capabilities are initialized, but never
* used. Only InitNotifier and DeleteFileHandler ever seem to get called
* within Postgres, but we implement all the functions for completeness.
* We can only fix this with Tcl >= 8.
2
, when Tcl_SetNotifier() appeared.
* We can only fix this with Tcl >= 8.
4
, when Tcl_SetNotifier() appeared.
*/
#if HAVE_TCL_VERSION(8,
2
)
#if HAVE_TCL_VERSION(8,
4
)
static
ClientData
pltcl_InitNotifier
(
void
)
...
...
@@ -262,7 +262,7 @@ _PG_init(void)
Tcl_FindExecutable
(
""
);
#endif
#if HAVE_TCL_VERSION(8,
2
)
#if HAVE_TCL_VERSION(8,
4
)
/*
* Override the functions in the Notifier subsystem. See comments above.
*/
...
...
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