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
139f19c3
Commit
139f19c3
authored
Jul 17, 2000
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update pltcl test to have at least some chance of running ... still
seems to be busted though ...
parent
a2c6bf5a
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
11 deletions
+2
-11
src/pl/tcl/test/runtest
src/pl/tcl/test/runtest
+2
-2
src/pl/tcl/test/test_mklang.sql
src/pl/tcl/test/test_mklang.sql
+0
-9
No files found.
src/pl/tcl/test/runtest
View file @
139f19c3
...
...
@@ -4,13 +4,13 @@ DBNAME=pltcl_test
export
DBNAME
echo
"**** Destroy old database
$DBNAME
****"
d
estroy
db
$DBNAME
d
rop
db
$DBNAME
echo
"**** Create test database
$DBNAME
****"
createdb
$DBNAME
echo
"**** Create procedural language pltcl ****"
psql
-q
-n
$DBNAME
<test_mklang.sql
createlang pltcl
$DBNAME
echo
"**** Create tables, functions and triggers ****"
psql
-q
-n
$DBNAME
<test_setup.sql
...
...
src/pl/tcl/test/test_mklang.sql
deleted
100644 → 0
View file @
a2c6bf5a
create
function
pltcl_call_handler
()
returns
opaque
as
'/usr/local/pgsql/lib/pltcl.so'
language
'C'
;
create
trusted
procedural
language
'pltcl'
handler
pltcl_call_handler
lancompiler
'PL/Tcl'
;
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