Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
swh-indexer
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
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
Platform
Development
swh-indexer
Commits
51516759
Verified
Commit
51516759
authored
7 years ago
by
Antoine R. Dumont
Browse files
Options
Downloads
Patches
Plain Diff
sql/swh-func: Move hash_sha1 function to the func namespace
parent
a821a564
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
sql/swh-func.sql
+10
-0
10 additions, 0 deletions
sql/swh-func.sql
sql/swh-init.sql
+0
-9
0 additions, 9 deletions
sql/swh-init.sql
with
10 additions
and
9 deletions
sql/swh-func.sql
+
10
−
0
View file @
51516759
-- Postgresql index helper function
create
or
replace
function
hash_sha1
(
text
)
returns
text
language
sql
strict
immutable
as
$$
select
encode
(
digest
(
$
1
,
'sha1'
),
'hex'
)
$$
;
comment
on
function
hash_sha1
(
text
)
is
'Compute sha1 hash as text'
;
-- create a temporary table with a single "bytea" column for fast object lookup.
create
or
replace
function
swh_mktemp_bytea
()
returns
void
...
...
This diff is collapsed.
Click to expand it.
sql/swh-init.sql
+
0
−
9
View file @
51516759
...
...
@@ -2,12 +2,3 @@ create extension if not exists btree_gist;
create
extension
if
not
exists
pgcrypto
;
create
or
replace
language
plpgsql
;
create
or
replace
function
hash_sha1
(
text
)
returns
text
language
sql
strict
immutable
as
$$
select
encode
(
digest
(
$
1
,
'sha1'
),
'hex'
)
$$
;
comment
on
function
hash_sha1
(
text
)
is
'Compute sha1 hash as text'
;
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