Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
205fbb22
Commit
205fbb22
authored
Sep 13, 2012
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sql_media_library: add missing text indexes
parent
5152b380
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
modules/media_library/sql_media_library.c
modules/media_library/sql_media_library.c
+8
-0
No files found.
modules/media_library/sql_media_library.c
View file @
205fbb22
...
...
@@ -801,6 +801,10 @@ int CreateEmptyDatabase( media_library_t *p_ml )
if
(
i_ret
!=
VLC_SUCCESS
)
goto
quit_createemptydatabase
;
i_ret
=
QuerySimple
(
p_ml
,
"CREATE INDEX album_title_index ON album (title);"
);
if
(
i_ret
!=
VLC_SUCCESS
)
goto
quit_createemptydatabase
;
/* Add "unknown" entry to albums */
i_ret
=
QuerySimple
(
p_ml
,
"INSERT INTO album ( id, title, cover, album_artist_id ) "
...
...
@@ -843,6 +847,10 @@ int CreateEmptyDatabase( media_library_t *p_ml )
if
(
i_ret
!=
VLC_SUCCESS
)
goto
quit_createemptydatabase
;
i_ret
=
QuerySimple
(
p_ml
,
"CREATE INDEX media_ui_index ON media (uri);"
);
if
(
i_ret
!=
VLC_SUCCESS
)
goto
quit_createemptydatabase
;
/* People */
i_ret
=
QuerySimple
(
p_ml
,
"CREATE TABLE people ( "
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment