Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
reputation_tracker
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
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
hive
reputation_tracker
Merge requests
!39
Adjust test
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Adjust test
mzander/fix-typo
into
mi/haf_with_hive_data
Overview
0
Commits
1
Pipelines
2
Changes
2
Closed
Michal Zander
requested to merge
mzander/fix-typo
into
mi/haf_with_hive_data
4 months ago
Overview
0
Commits
1
Pipelines
2
Changes
2
Expand
0
0
Merge request reports
Compare
mi/haf_with_hive_data
mi/haf_with_hive_data (base)
and
latest version
latest version
33baaf8f
1 commit,
4 months ago
2 files
+
4
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
db/rep_indexes.sql
+
3
−
3
Options
@@ -26,14 +26,14 @@ DO $$
END
$$
;
CREATE
UNIQUE
INDEX
CONCURRENTLY
IF
NOT
EXISTS
effective_comment_vote_idx
ON
hive
.
operations
USING
btree
CREATE
INDEX
CONCURRENTLY
IF
NOT
EXISTS
effective_comment_vote_idx
ON
hive
.
operations
USING
btree
(
(
body_binary
::
jsonb
->
'value'
->>
'author'
),
(
body_binary
::
jsonb
->
'value'
->>
'voter'
),
(
body_binary
::
jsonb
->
'value'
->>
'permlink'
),
id
desc
)
WHERE
hive
.
operation_id_to_type_id
(
id
)
=
72
;
;
WHERE
hive
.
operation_id_to_type_id
(
id
)
=
72
;
DO
$$
BEGIN
@@ -44,7 +44,7 @@ DO $$
END
$$
;
CREATE
UNIQUE
INDEX
CONCURRENTLY
IF
NOT
EXISTS
delete_comment_op_idx
ON
hive
.
operations
USING
btree
CREATE
INDEX
CONCURRENTLY
IF
NOT
EXISTS
delete_comment_op_idx
ON
hive
.
operations
USING
btree
(
(
body_binary
::
jsonb
->
'value'
->>
'author'
),
(
body_binary
::
jsonb
->
'value'
->>
'permlink'
),
Loading