fix: elvis problem

This commit is contained in:
Kjell Winblad 2023-11-23 18:58:01 +01:00
parent 64c015cf6f
commit f7296d549f
1 changed files with 8 additions and 1 deletions

View File

@ -181,7 +181,14 @@ values({producer, _PostgreSQLType}) ->
<<"connector">> => <<"connector_pgsql_test">>,
<<"parameters">> => #{
<<"sql">> =>
<<"INSERT INTO client_events(clientid, event, created_at) VALUES (\n ${clientid},\n ${event},\n TO_TIMESTAMP((${timestamp} :: bigint))\n)">>
<<
"INSERT INTO client_events(clientid, event, created_at)"
"VALUES (\n"
" ${clientid},\n"
" ${event},\n"
" TO_TIMESTAMP((${timestamp} :: bigint))\n"
")"
>>
},
<<"resource_opts">> => #{
<<"batch_size">> => 1,