Skip to content

Commit f670f7d

Browse files
committed
chore: update schema files
1 parent edaca40 commit f670f7d

File tree

3 files changed

+21
-21
lines changed

3 files changed

+21
-21
lines changed

migrations/schema-15.sql

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -495,13 +495,13 @@ begin
495495
raise debug 'PgBouncer auth request: %', p_usename;
496496

497497
return query
498-
select
499-
rolname::text,
500-
case when rolvaliduntil < now()
501-
then null
502-
else rolpassword::text
503-
end
504-
from pg_authid
498+
select
499+
rolname::text,
500+
case when rolvaliduntil < now()
501+
then null
502+
else rolpassword::text
503+
end
504+
from pg_authid
505505
where rolname=$1 and rolcanlogin;
506506
end;
507507
$_$;

migrations/schema-17.sql

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -482,13 +482,13 @@ begin
482482
raise debug 'PgBouncer auth request: %', p_usename;
483483

484484
return query
485-
select
486-
rolname::text,
487-
case when rolvaliduntil < now()
488-
then null
489-
else rolpassword::text
490-
end
491-
from pg_authid
485+
select
486+
rolname::text,
487+
case when rolvaliduntil < now()
488+
then null
489+
else rolpassword::text
490+
end
491+
from pg_authid
492492
where rolname=$1 and rolcanlogin;
493493
end;
494494
$_$;

migrations/schema-orioledb-17.sql

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -496,13 +496,13 @@ begin
496496
raise debug 'PgBouncer auth request: %', p_usename;
497497

498498
return query
499-
select
500-
rolname::text,
501-
case when rolvaliduntil < now()
502-
then null
503-
else rolpassword::text
504-
end
505-
from pg_authid
499+
select
500+
rolname::text,
501+
case when rolvaliduntil < now()
502+
then null
503+
else rolpassword::text
504+
end
505+
from pg_authid
506506
where rolname=$1 and rolcanlogin;
507507
end;
508508
$_$;

0 commit comments

Comments
 (0)