Skip to content
This repository has been archived by the owner on Dec 18, 2023. It is now read-only.

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
drewbanin authored Jul 14, 2019
1 parent 80c1e61 commit 16b2433
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,11 @@ Use --verbose for detailed stacktrace.
*** schemaTool failed ***
```

Solution:
```
# run this against the hive metastore (port forwarded to 10005 by default)
**Solution:** Drop (or rename) the public schema to allow the init script to recreate the metastore from scratch. **Only run this against a test Presto deployment. Do not run this in production!**
```sql
-- run this against the hive metastore (port forwarded to 10005 by default)
-- DO NOT RUN THIS IN PRODUCTION!

drop schema public cascade;
create schema public;
```
Expand Down

0 comments on commit 16b2433

Please sign in to comment.