From d505e654eea44787164417f7300938f8e1536eb1 Mon Sep 17 00:00:00 2001 From: Taksh Date: Sun, 19 Jul 2026 11:37:11 +0300 Subject: [PATCH] fix: emtpy -> empty in mimic-iv-note load comments Co-authored-by: Cursor --- mimic-iv-note/buildmimic/postgres/load.sql | 2 +- mimic-iv-note/buildmimic/postgres/load_7z.sql | 2 +- mimic-iv-note/buildmimic/postgres/load_gz.sql | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mimic-iv-note/buildmimic/postgres/load.sql b/mimic-iv-note/buildmimic/postgres/load.sql index 38a79a82b..8c0f26d8b 100644 --- a/mimic-iv-note/buildmimic/postgres/load.sql +++ b/mimic-iv-note/buildmimic/postgres/load.sql @@ -6,7 +6,7 @@ -- psql "dbname= user=" -v mimic_data_dir= -f load_gz.sql \cd :mimic_data_dir --- making sure that all tables are emtpy and correct encoding is defined -utf8- +-- making sure that all tables are empty and correct encoding is defined -utf8- SET CLIENT_ENCODING TO 'utf8'; \COPY mimiciv_note.discharge FROM 'discharge.csv' DELIMITER ',' CSV HEADER NULL ''; diff --git a/mimic-iv-note/buildmimic/postgres/load_7z.sql b/mimic-iv-note/buildmimic/postgres/load_7z.sql index 57c4dee65..0263e7ba4 100644 --- a/mimic-iv-note/buildmimic/postgres/load_7z.sql +++ b/mimic-iv-note/buildmimic/postgres/load_7z.sql @@ -6,7 +6,7 @@ -- psql "dbname= user=" -v mimic_data_dir= -f load_gz.sql \cd :mimic_data_dir --- making sure that all tables are emtpy and correct encoding is defined -utf8- +-- making sure that all tables are empty and correct encoding is defined -utf8- SET CLIENT_ENCODING TO 'utf8'; \COPY mimiciv_note.discharge FROM PROGRAM '7z e -so discharge.csv.gz' DELIMITER ',' CSV HEADER NULL ''; diff --git a/mimic-iv-note/buildmimic/postgres/load_gz.sql b/mimic-iv-note/buildmimic/postgres/load_gz.sql index bbe9ba64b..ff8c97272 100644 --- a/mimic-iv-note/buildmimic/postgres/load_gz.sql +++ b/mimic-iv-note/buildmimic/postgres/load_gz.sql @@ -6,7 +6,7 @@ -- psql "dbname= user=" -v mimic_data_dir= -f load_gz.sql \cd :mimic_data_dir --- making sure that all tables are emtpy and correct encoding is defined -utf8- +-- making sure that all tables are empty and correct encoding is defined -utf8- SET CLIENT_ENCODING TO 'utf8'; \COPY mimiciv_note.discharge FROM PROGRAM 'gzip -dc discharge.csv.gz' DELIMITER ',' CSV HEADER NULL '';