Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RadioObservatory
LOFAR
Commits
db253e27
Commit
db253e27
authored
18 years ago
by
Marcel Loose
Browse files
Options
Downloads
Patches
Plain Diff
BugID: 991
add_solve_step did not return the ID of the inserted step.
parent
8ecd1aa6
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CEP/BB/BBSControl/sql/create_blackboard_functions.sql
+2
-1
2 additions, 1 deletion
CEP/BB/BBSControl/sql/create_blackboard_functions.sql
with
2 additions
and
1 deletion
CEP/BB/BBSControl/sql/create_blackboard_functions.sql
+
2
−
1
View file @
db253e27
...
...
@@ -276,7 +276,7 @@ LANGUAGE SQL;
-- Full signature:
-- blackboard.add_solve_step("Name" TEXT, "Baselines.Station1" TEXT, "Baselines.Station2" TEXT, "Correlation.Selection" TEXT, "Correlation.Type" TEXT, "Sources" TEXT, "InstrumentModel" TEXT, "OutputData" TEXT, "MaxIter" INTEGER, "Epsilon" DOUBLE PRECISION, "MinConverged" DOUBLE PRECISION, "Parms" TEXT, "ExclParms" TEXT, "DomainSize.Freq" DOUBLE PRECISION, "DomainSize.Time" DOUBLE PRECISION)
CREATE
OR
REPLACE
FUNCTION
blackboard
.
add_solve_step
(
TEXT
,
TEXT
,
TEXT
,
TEXT
,
TEXT
,
TEXT
,
TEXT
,
TEXT
,
INTEGER
,
DOUBLE
PRECISION
,
DOUBLE
PRECISION
,
TEXT
,
TEXT
,
DOUBLE
PRECISION
,
DOUBLE
PRECISION
)
RETURNS
VOID
AS
RETURNS
INTEGER
AS
$$
DECLARE
_step_id
INTEGER
;
...
...
@@ -293,6 +293,7 @@ $$
"DomainSize.Freq"
,
"DomainSize.Time"
)
VALUES
(
_step_id
,
$
9
,
$
10
,
$
11
,
$
12
,
$
13
,
$
14
,
$
15
);
RETURN
_step_id
;
END
;
$$
LANGUAGE
plpgsql
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment