Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 714 Bytes

README.md

File metadata and controls

23 lines (14 loc) · 714 Bytes

pg_trgm test

The database dump and benchmark and fake data generation code for this blog post.

How to restore the database dump:

Note: This dump doesn't have the gin index on the name columns.

  1. Extract the dump file from name_search_no_index.7z.

  2. Then create an empty database:

createdb -U postgres name_search_index --template=template0
  1. Then restore the dump file into the empty database:
pg_restore -U postgres -d name_search_index < name_search_no_index.dump

For more info please take a look at this article.