Skip to content

Commit

Permalink
done
Browse files Browse the repository at this point in the history
  • Loading branch information
liyuheng55555 committed Dec 20, 2023
1 parent 975e5ca commit 1c95e4f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ public class IoTDB implements IDatabase {
private static final Logger LOGGER = LoggerFactory.getLogger(IoTDB.class);
private static final String ALREADY_KEYWORD = "already";
private static final AtomicBoolean templateInit = new AtomicBoolean(false);
private static final int ACTIVATE_TEMPLATE_THRESHOLD = 1000;
protected final String DELETE_SERIES_SQL;
protected SingleNodeJDBCConnection ioTDBConnection;

Expand All @@ -98,7 +99,6 @@ public class IoTDB implements IDatabase {
new CyclicBarrier(config.getCLIENT_NUMBER());
protected static Set<String> storageGroups = Collections.synchronizedSet(new HashSet<>());
protected final String ROOT_SERIES_NAME;
private final int ACTIVATE_TEMPLATE_THRESHOLD = 1000;
protected ExecutorService service;
protected Future<?> task;
protected DBConfig dbConfig;
Expand Down

0 comments on commit 1c95e4f

Please sign in to comment.