pgsql: Use less-generic names in matview.sql.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Use less-generic names in matview.sql.
Date: 2016-04-15 17:04:22
Message-ID: E1ar7AM-0002vD-Ma@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Use less-generic names in matview.sql.

The original coding of this test used table and view names like "t",
"tv", "foo", etc. This tended to interfere with doing simple manual
tests in the regression database; not to mention that it posed a
considerable risk of conflict with other regression test scripts.
Prefix these names with "mvtest_" to avoid such conflicts.

Also, change transiently-created role name to be "regress_xxx" per
discussions about being careful with regression-test role creation.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/4447f0bcb66547708fa977d6b252046e792a7e04

Modified Files
--------------
src/test/regress/expected/matview.out | 478 +++++++++++++++++-----------------
src/test/regress/expected/rules.out | 16 +-
src/test/regress/output/misc.source | 20 +-
src/test/regress/sql/matview.sql | 270 +++++++++----------
4 files changed, 392 insertions(+), 392 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Robert Haas 2016-04-15 18:04:35 Re: Re: [COMMITTERS] pgsql: Add trigonometric functions that work in degrees.
Previous Message Tom Lane 2016-04-15 16:11:54 pgsql: Fix possible crash in ALTER TABLE ... REPLICA IDENTITY USING IND