forked from 1Panel-dev/MaxKB
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: 刷新公共访问链接后,客户端统计重置 * fix: 导出未提交的sql文件 * fix: 创建 MaxKB 在线文档的知识库,只能获取根地址数据,子地址数据无法获取
- Loading branch information
1 parent
8e018a1
commit 11d8c6f
Showing
8 changed files
with
96 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
SELECT | ||
application_chat."id" as chat_id, | ||
application_chat.abstract as abstract, | ||
application_chat_record_temp.problem_text as problem_text, | ||
application_chat_record_temp.answer_text as answer_text, | ||
application_chat_record_temp.message_tokens as message_tokens, | ||
application_chat_record_temp.answer_tokens as answer_tokens, | ||
application_chat_record_temp.run_time as run_time, | ||
application_chat_record_temp.details::JSON as details, | ||
application_chat_record_temp."index" as "index", | ||
application_chat_record_temp.improve_paragraph_list as improve_paragraph_list, | ||
application_chat_record_temp.vote_status as vote_status, | ||
application_chat_record_temp.create_time as create_time | ||
FROM | ||
application_chat application_chat | ||
LEFT JOIN ( | ||
SELECT COUNT | ||
( "id" ) AS chat_record_count, | ||
SUM ( CASE WHEN "vote_status" = '0' THEN 1 ELSE 0 END ) AS star_num, | ||
SUM ( CASE WHEN "vote_status" = '1' THEN 1 ELSE 0 END ) AS trample_num, | ||
SUM ( CASE WHEN array_length( application_chat_record.improve_paragraph_id_list, 1 ) IS NULL THEN 0 ELSE array_length( application_chat_record.improve_paragraph_id_list, 1 ) END ) AS mark_sum, | ||
chat_id | ||
FROM | ||
application_chat_record | ||
GROUP BY | ||
application_chat_record.chat_id | ||
) chat_record_temp ON application_chat."id" = chat_record_temp.chat_id | ||
LEFT JOIN ( | ||
SELECT | ||
*, | ||
CASE | ||
WHEN array_length( application_chat_record.improve_paragraph_id_list, 1 ) IS NULL THEN | ||
'{}' ELSE ( SELECT ARRAY_AGG ( row_to_json ( paragraph ) ) FROM paragraph WHERE "id" = ANY ( application_chat_record.improve_paragraph_id_list ) ) | ||
END as improve_paragraph_list | ||
FROM | ||
application_chat_record application_chat_record | ||
) application_chat_record_temp ON application_chat_record_temp.chat_id = application_chat."id" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters