You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ta...@apache.org on 2023/05/25 13:48:21 UTC

[iotdb] branch master updated: [IOTDB-5919] show variables add a variable timestamp_precision (#9946)

This is an automated email from the ASF dual-hosted git repository.

tanxinyu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/master by this push:
     new 3bc6457a5f1 [IOTDB-5919] show variables add a variable timestamp_precision (#9946)
3bc6457a5f1 is described below

commit 3bc6457a5f16adb8b0e32535ff45a3d5e59d3a73
Author: YuFengLiu <38...@users.noreply.github.com>
AuthorDate: Thu May 25 21:48:14 2023 +0800

    [IOTDB-5919] show variables add a variable timestamp_precision (#9946)
---
 .../java/org/apache/iotdb/confignode/it/utils/ConfigNodeTestUtils.java   | 1 +
 1 file changed, 1 insertion(+)

diff --git a/integration-test/src/test/java/org/apache/iotdb/confignode/it/utils/ConfigNodeTestUtils.java b/integration-test/src/test/java/org/apache/iotdb/confignode/it/utils/ConfigNodeTestUtils.java
index 2bca1e15cd1..b3123838fcf 100644
--- a/integration-test/src/test/java/org/apache/iotdb/confignode/it/utils/ConfigNodeTestUtils.java
+++ b/integration-test/src/test/java/org/apache/iotdb/confignode/it/utils/ConfigNodeTestUtils.java
@@ -212,6 +212,7 @@ public class ConfigNodeTestUtils {
     clusterParameters.setSchemaRegionPerDataNode(1.0);
     clusterParameters.setDiskSpaceWarningThreshold(0.05);
     clusterParameters.setReadConsistencyLevel("strong");
+    clusterParameters.setTimestampPrecision("ms");
     return clusterParameters;
   }