Sign in
apache
/
camel-kamelets-examples
/
refs/heads/db-example-secret-refresh
/
.
/
jbang
/
aws-database-admin-secrets-refresh
/
populate.sql
blob: 93e7b1ec1ae6f3df775e089aa011f3dea1f7fe79 [
file
] [
log
] [
blame
]
do
$$
BEGIN
for
r
in
1..10
loop
INSERT
into
accounts
(
username
,
city
)
VALUES
(
'John'
,
'New York'
);
END
loop
;
END
;
$$;