OSDN Git Service

pg_dump and pg_restore were stripping quotes and downcasing some but
authorTom Lane <tgl@sss.pgh.pa.us>
Wed, 11 Jun 2003 16:29:42 +0000 (16:29 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Wed, 11 Jun 2003 16:29:42 +0000 (16:29 +0000)
commit8bfe93c5c8b10c9a824fd07138c55d3a857f4e98
tree2c6f8a93ca1cc89d8c1809ee2dbba61cc30b6981
parent7481b7d1e4f6a507e8c0c33c7d4007c807caea32
pg_dump and pg_restore were stripping quotes and downcasing some but
not all SQL identifiers taken from command line arguments.  We decided
years ago that that was a bad idea: identifiers taken from the command
line should be treated as literally correct.  Remove the inconsistent
code that has crept in recently.  Also fix pg_dump so that the combination
of --schema and --table does what you'd expect, namely dump exactly one
table from exactly one schema.  Per gripe from Deepak Bhole of Red Hat.
doc/src/sgml/ref/pg_dump.sgml
doc/src/sgml/ref/pg_restore.sgml
src/bin/pg_dump/pg_dump.c
src/bin/pg_dump/pg_restore.c