Revert "Move bucket generation to a table trigger"
This reverts commit dd64a332e5
.
This commit is contained in:
parent
31fdfd3dc5
commit
c188cbea7e
@ -79,7 +79,19 @@ public class StatsRepository extends RepositoryBase
|
|||||||
{
|
{
|
||||||
try (Connection c = getConnection())
|
try (Connection c = getConnection())
|
||||||
{
|
{
|
||||||
executeInsert(c, "INSERT INTO stats (name) VALUES (?);", rs -> onComplete.run(), () -> {}, new ColumnVarChar("name", 100, name));
|
executeInsert(c, "INSERT INTO stats (name) VALUES (?);", rs ->
|
||||||
|
{
|
||||||
|
if (rs.next())
|
||||||
|
{
|
||||||
|
final int id = rs.getInt(1);
|
||||||
|
try (CallableStatement cs = c.prepareCall("{call accountStatsCreateBucketData(?)}"))
|
||||||
|
{
|
||||||
|
cs.setInt("stat", id);
|
||||||
|
cs.execute();
|
||||||
|
onComplete.run();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}, () -> {}, new ColumnVarChar("name", 100, name));
|
||||||
}
|
}
|
||||||
catch (SQLException e)
|
catch (SQLException e)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user