1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-16 17:07:43 +03:00

PL/pgSQL: rename gram.y to pl_gram.y

This makes the naming inside plpgsql consistent and distinguishes the
file from the backend's gram.y file.  It will also allow easier
refactoring of the bison make rules later on.
This commit is contained in:
Peter Eisentraut
2012-10-04 22:40:33 -04:00
parent c424d0d105
commit 05346c131a
4 changed files with 6 additions and 6 deletions

View File

@@ -107,7 +107,7 @@ sub mkvcbuild
my $plpgsql =
$solution->AddProject('plpgsql', 'dll', 'PLs', 'src\pl\plpgsql\src');
$plpgsql->AddFiles('src\pl\plpgsql\src', 'gram.y');
$plpgsql->AddFiles('src\pl\plpgsql\src', 'pl_gram.y');
$plpgsql->AddReference($postgres);
if ($solution->{options}->{perl})