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
e016b724
"...postgres-lambda-diff.git" did not exist on "b44e46cfcea288c3f404b4da4456b9736b057a38"
Commit
e016b724
authored
12 years ago
by
Simon Riggs
Browse files
Options
Downloads
Patches
Plain Diff
Add pageinspect--1.0--1.sql for checksum changes
parent
ef04cb74
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
contrib/pageinspect/pageinspect--1.0--1.1.sql
+18
-0
18 additions, 0 deletions
contrib/pageinspect/pageinspect--1.0--1.1.sql
with
18 additions
and
0 deletions
contrib/pageinspect/pageinspect--1.0--1.1.sql
0 → 100644
+
18
−
0
View file @
e016b724
/* contrib/pageinspect/pageinspect--1.0--1.1.sql */
-- complain if script is sourced in psql, rather than via ALTER EXTENSION UPDATE
\
echo
Use
"ALTER EXTENSION pageinspect UPDATE TO 1.1"
to
load
this
file
.
\
quit
DROP
FUNCTION
page_header
(
bytea
);
CREATE
FUNCTION
page_header
(
IN
page
bytea
,
OUT
lsn
text
,
OUT
checksum
smallint
,
OUT
flags
smallint
,
OUT
lower
smallint
,
OUT
upper
smallint
,
OUT
special
smallint
,
OUT
pagesize
smallint
,
OUT
version
smallint
,
OUT
prune_xid
xid
)
AS
'MODULE_PATHNAME'
,
'page_header'
LANGUAGE
C
STRICT
;
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