From 9ab680d3f490b1ba92bd15efccdfc24253c2bb5a Mon Sep 17 00:00:00 2001 From: steve-chavez Date: Sun, 17 Dec 2023 17:49:21 -0500 Subject: [PATCH] readme: update to generic path --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f6ce31c..b85f0de 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ If you get data compressed as bzip2, whether through [HTTP](https://github.com/p For this example we'll use `fio_writefile` from [pgsql-fio](https://github.com/csimsek/pgsql-fio), which offers a convenient way to write a file from SQL. ```sql - select fio_writefile('/home/stevechavez/Projects/pg_bzip/my_text.bz2', bzip2(repeat('my secret text to be compressed', 1000)::bytea)) as writesize; + select fio_writefile('/path/to/my_text.bz2', bzip2(repeat('my text to be compressed', 1000)::bytea)) as writesize; writesize -----------