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
392b187a
Commit
392b187a
authored
20 years ago
by
Tom Lane
Browse files
Options
Downloads
Patches
Plain Diff
Remove DROPs from contrib object creation scripts, per Dave Page.
parent
b3f2f6eb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
contrib/intagg/int_aggregate.sql.in
+1
-2
1 addition, 2 deletions
contrib/intagg/int_aggregate.sql.in
contrib/pgstattuple/pgstattuple.sql.in
+0
-1
0 additions, 1 deletion
contrib/pgstattuple/pgstattuple.sql.in
with
1 addition
and
3 deletions
contrib/intagg/int_aggregate.sql.in
+
1
−
2
View file @
392b187a
...
@@ -15,9 +15,8 @@ RETURNS int4[]
...
@@ -15,9 +15,8 @@ RETURNS int4[]
AS 'MODULE_PATHNAME','int_agg_final_array'
AS 'MODULE_PATHNAME','int_agg_final_array'
LANGUAGE 'C' IMMUTABLE STRICT;
LANGUAGE 'C' IMMUTABLE STRICT;
-- The aggr
ation
funcion
.
-- The aggr
egate
func
t
ion
itself
-- uses the above functions to create an array of integers from an aggregation.
-- uses the above functions to create an array of integers from an aggregation.
DROP AGGREGATE int_array_aggregate(int4);
CREATE AGGREGATE int_array_aggregate (
CREATE AGGREGATE int_array_aggregate (
BASETYPE = int4,
BASETYPE = int4,
SFUNC = int_agg_state,
SFUNC = int_agg_state,
...
...
This diff is collapsed.
Click to expand it.
contrib/pgstattuple/pgstattuple.sql.in
+
0
−
1
View file @
392b187a
-- Adjust this setting to control where the objects get created.
-- Adjust this setting to control where the objects get created.
SET search_path = public;
SET search_path = public;
DROP TYPE pgstattuple_type CASCADE;
CREATE TYPE pgstattuple_type AS (
CREATE TYPE pgstattuple_type AS (
table_len BIGINT, -- physical table length in bytes
table_len BIGINT, -- physical table length in bytes
tuple_count BIGINT, -- number of live tuples
tuple_count BIGINT, -- number of live tuples
...
...
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