Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
hivemind
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
hivemind
Merge requests
!389
Mock tests for communities
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Mock tests for communities
mt-mock-communities
into
develop
Overview
0
Commits
13
Pipelines
0
Changes
16
Merged
Mariusz Trela
requested to merge
mt-mock-communities
into
develop
4 years ago
Overview
0
Commits
13
Pipelines
0
Changes
16
Expand
0
0
Merge request reports
Compare
develop
version 9
6dd3daea
4 years ago
version 8
2f6bcd97
4 years ago
version 7
6ff9258e
4 years ago
version 6
eb5b0c44
4 years ago
version 5
9b1c485f
4 years ago
version 4
6459714b
4 years ago
version 3
bb68aa68
4 years ago
version 2
e8ab065c
4 years ago
version 1
65621246
4 years ago
develop (base)
and
latest version
latest version
83a9044e
13 commits,
4 years ago
version 9
6dd3daea
13 commits,
4 years ago
version 8
2f6bcd97
12 commits,
4 years ago
version 7
6ff9258e
12 commits,
4 years ago
version 6
eb5b0c44
9 commits,
4 years ago
version 5
9b1c485f
8 commits,
4 years ago
version 4
6459714b
9 commits,
4 years ago
version 3
bb68aa68
10 commits,
4 years ago
version 2
e8ab065c
9 commits,
4 years ago
version 1
65621246
8 commits,
4 years ago
16 files
+
1919
−
32
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
16
Search (e.g. *.vue) (Ctrl+P)
hive/db/sql_scripts/bridge_get_account_posts_by_blog.sql
+
2
−
2
Options
@@ -70,10 +70,10 @@ BEGIN
WHERE
hp
.
id
=
hfc
.
post_id
AND
hp
.
counter_deleted
=
0
AND
hp
.
depth
=
0
AND
hp
.
community_id
IS
NOT
NULL
AND
NOT
EXISTS
(
SELECT
NULL
FROM
hive_reblogs
hr
WHERE
hr
.
blogger_id
=
__account_id
AND
hr
.
post_id
=
hp
.
id
)
)
ORDER
BY
created_at
DESC
ORDER
BY
created_at
DESC
,
post_id
DESC
LIMIT
_limit
)
T
ON
hp
.
id
=
T
.
post_id
ORDER
BY
T
.
created_at
DESC
ORDER
BY
T
.
created_at
DESC
,
T
.
post_id
DESC
;
END
$
function
$
Loading