Skip to content

Commit

Permalink
Update README.md (georgia-tech-db#349)
Browse files Browse the repository at this point in the history
Fix upload
  • Loading branch information
xzdandy authored Sep 7, 2022
1 parent 924441b commit 11609ea
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,16 +65,10 @@ eva_client # launch client
2. UPLOAD a video using the client (we use [ua_detrac.mp4](data/ua_detrac/ua_detrac.mp4) video as an example):

```mysql
UPLOAD INFILE 'data/ua_detrac/ua_detrac.mp4' PATH 'test_video.mp4';
UPLOAD INFILE "data/ua_detrac/ua_detrac.mp4" INTO MyVideo;
```

3. LOAD the video using the following command:

```mysql
LOAD FILE 'test_video.mp4' INTO MyVideo;
```

4. That's it. You can now start issuing queries over the loaded video:
3. That's it. You can now start issuing queries over the loaded video:

```mysql
SELECT id, data FROM MyVideo WHERE id < 5;
Expand Down

0 comments on commit 11609ea

Please sign in to comment.