Add explicit alias to avoid debug output diff in pg15 (#6183)

pull/6202/head
Naisila Puka 2022-08-19 11:39:18 +03:00 committed by GitHub
parent 1f1b02b64b
commit 5a9fdc221b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -1357,7 +1357,7 @@ select typdefault from (
where typdefault > 'a'
limit 1) as subq_0
where (
select true from pg_catalog.pg_am limit 1
select true as bool from pg_catalog.pg_am limit 1
)
) as subq_1
) as subq_2;
@ -1387,7 +1387,7 @@ select typdefault from (
where typdefault > 'a'
limit 1) as subq_0
where (
select true from pg_catalog.pg_am limit 1
select true as bool from pg_catalog.pg_am limit 1
)
) as subq_1
) as subq_2;

View File

@ -359,7 +359,7 @@ select typdefault from (
where typdefault > 'a'
limit 1) as subq_0
where (
select true from pg_catalog.pg_am limit 1
select true as bool from pg_catalog.pg_am limit 1
)
) as subq_1
) as subq_2;
@ -376,7 +376,7 @@ select typdefault from (
where typdefault > 'a'
limit 1) as subq_0
where (
select true from pg_catalog.pg_am limit 1
select true as bool from pg_catalog.pg_am limit 1
)
) as subq_1
) as subq_2;