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
Commits
be557aff
Commit
be557aff
authored
4 years ago
by
Dariusz Kędzierski
Browse files
Options
Downloads
Patches
Plain Diff
json_metadata can contain malformed json (yeah it sucks) so we need to hold it as text
parent
ecd829d4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
5 merge requests
!456
Release candidate v1 24
,
!230
Setup monitoring with pghero
,
!135
Enable postgres monitoring on CI server
,
!16
Dk issue 3 concurrent block query rebase
,
!15
Dk issue 3 concurrent block query
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
hive/db/schema.py
+1
-1
1 addition, 1 deletion
hive/db/schema.py
hive/server/bridge_api/objects.py
+1
-1
1 addition, 1 deletion
hive/server/bridge_api/objects.py
scripts/update_hivemind_db.sql
+2
-2
2 additions, 2 deletions
scripts/update_hivemind_db.sql
with
4 additions
and
4 deletions
hive/db/schema.py
+
1
−
1
View file @
be557aff
...
...
@@ -170,7 +170,7 @@ def build_metadata():
sa
.
Column
(
'
preview
'
,
VARCHAR
(
1024
),
nullable
=
False
),
sa
.
Column
(
'
img_url
'
,
VARCHAR
(
1024
),
nullable
=
False
),
sa
.
Column
(
'
body
'
,
TEXT
),
sa
.
Column
(
'
json
'
,
sa
.
JSON
)
sa
.
Column
(
'
json
'
,
TEXT
)
)
sa
.
Table
(
...
...
This diff is collapsed.
Click to expand it.
hive/server/bridge_api/objects.py
+
1
−
1
View file @
be557aff
...
...
@@ -239,7 +239,7 @@ def _condenser_post_object(row, truncate_body=0):
post
[
'
title
'
]
=
row
[
'
title
'
]
post
[
'
body
'
]
=
row
[
'
body
'
][
0
:
truncate_body
]
if
truncate_body
else
row
[
'
body
'
]
post
[
'
json_metadata
'
]
=
json
.
loads
(
row
[
'
json
'
]
)
post
[
'
json_metadata
'
]
=
row
[
'
json
'
]
post
[
'
created
'
]
=
json_date
(
row
[
'
created_at
'
])
post
[
'
updated
'
]
=
json_date
(
row
[
'
updated_at
'
])
...
...
This diff is collapsed.
Click to expand it.
scripts/update_hivemind_db.sql
+
2
−
2
View file @
be557aff
...
...
@@ -151,7 +151,7 @@ CREATE TABLE IF NOT EXISTS hive_post_data (
preview
VARCHAR
(
1024
)
NOT
NULL
,
img_url
VARCHAR
(
1024
)
NOT
NULL
,
body
TEXT
,
json
JSON
json
TEXT
);
CREATE
INDEX
IF
NOT
EXISTS
hive_post_data_id_idx
ON
hive_post_data
(
id
);
...
...
@@ -221,7 +221,7 @@ UPDATE hive_posts_new hpn SET (
-- Populate table hive_post_data with bulk data from hive_posts_cache
-- RAISE NOTICE 'Populate table hive_post_data with bulk data from hive_posts_cache';
INSERT
INTO
hive_post_data
(
id
,
title
,
preview
,
img_url
,
body
,
votes
,
json
)
SELECT
post_id
,
title
,
preview
,
img_url
,
body
,
json
::
json
FROM
hive_posts_cache
;
INSERT
INTO
hive_post_data
(
id
,
title
,
preview
,
img_url
,
body
,
votes
,
json
)
SELECT
post_id
,
title
,
preview
,
img_url
,
body
,
json
FROM
hive_posts_cache
;
-- Populate hive_votes table
-- RAISE NOTICE 'Populate table hive_votes with bulk data from hive_posts_cache';
...
...
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