Re: BUG #5023: pg_relation_size() is not case sensitive
Kevin Grittner <kevin.grittner@wicourts.gov>
From: "Kevin Grittner" <Kevin.Grittner@wicourts.gov>
To: <pgsql-bugs@postgresql.org>, "Joseph Shraibman" <jks@selectacast.net>
Date: 2009-08-31T22:11:26Z
Lists: pgsql-bugs
"Joseph Shraibman" <jks@selectacast.net> wrote:
> The pg_relation_size(text) method cannot determine the size of a
> relation that has capital letters.
Did you try putting quotes inside the apostrophes?:
SELECT pg_relation_size('"MixedCaseRelation"');
-Kevin