-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat: コントロールパネル内のファイル一覧でファイル名と説明で検索できるように #14790
base: develop
Are you sure you want to change the base?
Feat: コントロールパネル内のファイル一覧でファイル名と説明で検索できるように #14790
Conversation
このPRによるapi.jsonの差分 差分はこちら--- base
+++ head
@@ -5469,6 +5469,18 @@
],
"default": null,
"description": "The local host is represented with `null`."
+ },
+ "name": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "comment": {
+ "type": [
+ "string",
+ "null"
+ ]
}
}
} |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop #14790 +/- ##
============================================
+ Coverage 19.35% 41.39% +22.03%
============================================
Files 722 1559 +837
Lines 102432 201515 +99083
Branches 992 3655 +2663
============================================
+ Hits 19825 83409 +63584
- Misses 82056 117504 +35448
- Partials 551 602 +51 ☔ View full report in Codecov by Sentry. |
|
一つ自分でも気になっていることがあり、今回検索対象にしているdrive_fileの対象カラム(name,comment)ともにインデックスがないようです。 |
インデックスあったとしてもパフォーマンス的に厳しそうだわね |
現状でもMIME typeの部分はLIKEによる前方一致検索がINDEXありの状態で使われているので、問題ないかもしれません。
|
What
コントロールパネルのファイル一覧において、ファイル名と説明で検索が可能になります。
Why
Fix #14789
Additional info (optional)
Checklist