Skip to content

Commit 49f0574

Browse files
committed
Correct SQL Group BY for space user list SQL
1 parent 8eb930d commit 49f0574

File tree

3 files changed

+666
-666
lines changed

3 files changed

+666
-666
lines changed

domain/user/store.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ func (s Store) GetSpaceUsers(ctx domain.RequestContext, spaceID string) (u []use
215215
UNION ALL
216216
SELECT r.c_userid from dmz_group_member r LEFT JOIN dmz_permission p ON p.c_whoid=r.c_groupid WHERE p.c_orgid=? AND p.c_who='role' AND p.c_scope='object' AND p.c_location='space' AND p.c_refid=?
217217
)
218-
ORDER BY u.c_firstname, c_u.lastname`),
218+
ORDER BY u.c_firstname, u.c_lastname`),
219219
ctx.OrgID, ctx.OrgID, spaceID, ctx.OrgID, spaceID)
220220

221221
if err == sql.ErrNoRows {

edition/community.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ func main() {
4040
rt.Product.Major = "1"
4141
rt.Product.Minor = "71"
4242
rt.Product.Patch = "0"
43-
rt.Product.Revision = 181006150624
43+
rt.Product.Revision = 181007125514
4444
rt.Product.Version = fmt.Sprintf("%s.%s.%s", rt.Product.Major, rt.Product.Minor, rt.Product.Patch)
4545
rt.Product.Edition = "Community"
4646
rt.Product.Title = fmt.Sprintf("%s Edition", rt.Product.Edition)

embed/bindata.go

+664-664
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)