Sign in
apache
/
camel-performance-tests
/
refs/heads/fix-params
/
.
/
profiling
/
kafka
/
postgresql-kafka-exchange-pooling
/
script
/
populate-30000.sql
blob: 0a752d3a8dcd7ba15bad1e132ef9ef988b168f9e [
file
] [
log
] [
blame
]
do
$$
BEGIN
for
r
in
1..30000
loop
INSERT
into
accounts
(
username
,
city
)
VALUES
(
'John'
,
'New York'
);
END
loop
;
END
;
$$;