You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by ja...@apache.org on 2021/10/07 17:26:33 UTC

[pinot] branch master updated: Fix TableCacheTest by using unique schema and table name (#7538)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 1be1b48  Fix TableCacheTest by using unique schema and table name (#7538)
1be1b48 is described below

commit 1be1b480a02829553802a525bbbb602179a1c726
Author: Xiaotian (Jackie) Jiang <17...@users.noreply.github.com>
AuthorDate: Thu Oct 7 10:26:21 2021 -0700

    Fix TableCacheTest by using unique schema and table name (#7538)
---
 .../test/java/org/apache/pinot/controller/helix/TableCacheTest.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pinot-controller/src/test/java/org/apache/pinot/controller/helix/TableCacheTest.java b/pinot-controller/src/test/java/org/apache/pinot/controller/helix/TableCacheTest.java
index 5306bc1..26a9a3d 100644
--- a/pinot-controller/src/test/java/org/apache/pinot/controller/helix/TableCacheTest.java
+++ b/pinot-controller/src/test/java/org/apache/pinot/controller/helix/TableCacheTest.java
@@ -41,12 +41,12 @@ import static org.testng.Assert.assertNull;
 
 
 public class TableCacheTest {
-  private static final String SCHEMA_NAME = "testSchema";
-  private static final String RAW_TABLE_NAME = "testTable";
+  private static final String SCHEMA_NAME = "cacheTestSchema";
+  private static final String RAW_TABLE_NAME = "cacheTestTable";
   private static final String OFFLINE_TABLE_NAME = TableNameBuilder.OFFLINE.tableNameWithType(RAW_TABLE_NAME);
   private static final String REALTIME_TABLE_NAME = TableNameBuilder.REALTIME.tableNameWithType(RAW_TABLE_NAME);
 
-  private static final String MANGLED_RAW_TABLE_NAME = "TeStTaBlE";
+  private static final String MANGLED_RAW_TABLE_NAME = "cAcHeTeStTaBlE";
   private static final String MANGLED_OFFLINE_TABLE_NAME = MANGLED_RAW_TABLE_NAME + "_oFfLiNe";
 
   @BeforeClass

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org