From f4b3a525bb4e759662d301fca7a83be8ea2eb23d Mon Sep 17 00:00:00 2001 From: Guillem Borrell Nogueras Date: Wed, 1 Feb 2023 10:37:28 +0100 Subject: [PATCH] Fixed bash string quotes --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ef3bb26..b267101 100644 --- a/README.md +++ b/README.md @@ -205,7 +205,7 @@ $ cat large_csv_file.csv | iconv -f latin1 -t UTF-8 | psql -U username -h hostna The ingestion process is atomic, meaning that if `pgsql` fails to insert any record, no insertions will be made at all. If the insertion fails, probably because some column of type varchar can't fit the inferred type, you can change the type with: ``` -$ psql -U username -h hostname -c "alter table tablename alter column "LongDescription" type varchar(1024);" database +$ psql -U username -h hostname -c 'alter table tablename alter column "LongDescription" type varchar(1024);' database ``` And try inserting again