mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
Avoid warning about uninitialized value in MSVC python3 tests
Juan José Santamaría Flecha Backpatch to all live branches
This commit is contained in:
parent
f3e78069db
commit
90657b42bf
@ -347,7 +347,7 @@ sub mangle_plpython3
|
|||||||
s/([ [{])u'/$1'/g;
|
s/([ [{])u'/$1'/g;
|
||||||
s/def next/def __next__/g;
|
s/def next/def __next__/g;
|
||||||
s/LANGUAGE plpython2?u/LANGUAGE plpython3u/g;
|
s/LANGUAGE plpython2?u/LANGUAGE plpython3u/g;
|
||||||
s/EXTENSION ([^ ]*_)*plpython2?u/EXTENSION $1plpython3u/g;
|
s/EXTENSION (\S*?)plpython2?u/EXTENSION $1plpython3u/g;
|
||||||
s/installing required extension "plpython2u"/installing required extension "plpython3u"/g;
|
s/installing required extension "plpython2u"/installing required extension "plpython3u"/g;
|
||||||
}
|
}
|
||||||
for ($contents);
|
for ($contents);
|
||||||
|
Loading…
Reference in New Issue
Block a user