Revert "Revert "Move bucket generation to a table trigger""

This reverts commit c188cbea7e.
This commit is contained in:
Alexander Meech 2017-11-07 00:17:58 -05:00
parent 2f66bfa78c
commit e6e94eafa2
1 changed files with 1 additions and 13 deletions

View File

@ -79,19 +79,7 @@ public class StatsRepository extends RepositoryBase
{ {
try (Connection c = getConnection()) try (Connection c = getConnection())
{ {
executeInsert(c, "INSERT INTO stats (name) VALUES (?);", rs -> executeInsert(c, "INSERT INTO stats (name) VALUES (?);", rs -> onComplete.run(), () -> {}, new ColumnVarChar("name", 100, name));
{
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)
{ {