Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Jakob Huber
postgres-lambda-diff
Commits
7c81d795
Commit
7c81d795
authored
16 years ago
by
Tom Lane
Browse files
Options
Downloads
Patches
Plain Diff
seg_size() has to be V1 calling convention, too.
parent
6e884662
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
contrib/seg/seg.c
+6
-9
6 additions, 9 deletions
contrib/seg/seg.c
with
6 additions
and
9 deletions
contrib/seg/seg.c
+
6
−
9
View file @
7c81d795
...
...
@@ -35,12 +35,14 @@ extern int seg_yydebug;
*/
PG_FUNCTION_INFO_V1
(
seg_in
);
PG_FUNCTION_INFO_V1
(
seg_out
);
PG_FUNCTION_INFO_V1
(
seg_size
);
PG_FUNCTION_INFO_V1
(
seg_lower
);
PG_FUNCTION_INFO_V1
(
seg_upper
);
PG_FUNCTION_INFO_V1
(
seg_center
);
Datum
seg_in
(
PG_FUNCTION_ARGS
);
Datum
seg_out
(
PG_FUNCTION_ARGS
);
Datum
seg_size
(
PG_FUNCTION_ARGS
);
Datum
seg_lower
(
PG_FUNCTION_ARGS
);
Datum
seg_upper
(
PG_FUNCTION_ARGS
);
Datum
seg_center
(
PG_FUNCTION_ARGS
);
...
...
@@ -81,7 +83,6 @@ bool seg_over_right(SEG * a, SEG * b);
SEG
*
seg_union
(
SEG
*
a
,
SEG
*
b
);
SEG
*
seg_inter
(
SEG
*
a
,
SEG
*
b
);
void
rt_seg_size
(
SEG
*
a
,
float
*
sz
);
float
*
seg_size
(
SEG
*
a
);
/*
** Various operators
...
...
@@ -717,16 +718,12 @@ rt_seg_size(SEG * a, float *size)
return
;
}
float
*
seg_size
(
SEG
*
a
)
Datum
seg_size
(
PG_FUNCTION_ARGS
)
{
float
*
result
;
result
=
(
float
*
)
palloc
(
sizeof
(
float
));
*
result
=
(
float
)
Abs
(
a
->
upper
-
a
->
lower
);
SEG
*
seg
=
(
SEG
*
)
PG_GETARG_POINTER
(
0
);
return
(
result
);
PG_RETURN_FLOAT4
((
float
)
Abs
(
seg
->
upper
-
seg
->
lower
)
);
}
...
...
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