~timkuhlman/ubuntu-geonames/column-size-fiz

« back to all changes in this revision

Viewing changes to import-geonames.sh

  • Committer: Tim Kuhlman
  • Date: 2015-12-16 21:29:54 UTC
  • Revision ID: timothy.kuhlman@canonical.com-20151216212954-xivgih7bfyu6ysez
Added missing quotes for the username

Show diffs side-by-side

added added

removed removed

Lines of Context:
214
214
ALTER INDEX geoname_admin2codes_code_idx${LOAD_POSTFIX} RENAME TO geoname_admin2codes_code_idx;
215
215
ALTER INDEX geoname_countryinfo_isoalpha2_idx${LOAD_POSTFIX} RENAME TO geoname_countryinfo_isoalpha2_idx;
216
216
ALTER INDEX geoname_alternatename_idx${LOAD_POSTFIX} RENAME TO geoname_alternatename_idx;
217
 
GRANT ALL PRIVILEGES ON geoname, admin1codes, countryInfo, alternatename TO $PGUSER;
 
217
GRANT ALL PRIVILEGES ON geoname, admin1codes, countryInfo, alternatename TO "$PGUSER";
218
218
GRANT SELECT ON geoname, admin1codes, admin2codes, countryInfo, alternatename TO public;
219
219
COMMIT;
220
220
EOT