Skip to content

Commit

Permalink
[chore](regression) Normalize external case labels (apache#46622)
Browse files Browse the repository at this point in the history
### What problem does this PR solve?
Ensure that all external cases are labeled with the external tag.
  • Loading branch information
zgxme authored Jan 9, 2025
1 parent 60b4903 commit 43bf9e1
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// specific language governing permissions and limitations
// under the License.

suite("test_jdbc_query_tvf") {
suite("test_jdbc_query_tvf", "p0,external") {

String enabled = context.config.otherConfigs.get("enableJdbcTest")
String externalEnvIp = context.config.otherConfigs.get("externalEnvIp")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// specific language governing permissions and limitations
// under the License.

suite("test_switch_catalog_and_delete_internal") {
suite("test_switch_catalog_and_delete_internal", "p0,external") {
String enabled = context.config.otherConfigs.get("enableJdbcTest")
String externalEnvIp = context.config.otherConfigs.get("externalEnvIp")
String mysql_port = context.config.otherConfigs.get("mysql_57_port");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
// under the License.

// This suit test the `frontends_disks` tvf
suite("test_frontends_disks_tvf") {
suite("test_frontends_disks_tvf", "p0,external") {
List<List<Object>> table = sql """ select * from `frontends_disks`(); """
assertTrue(table.size() > 0)
assertTrue(table[0].size == 10)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import java.nio.charset.StandardCharsets
import java.nio.file.Files
import java.nio.file.Paths

suite("test_insert_from_tvf_with_common_user", "p0") {
suite("test_insert_from_tvf_with_common_user", "p0,external") {
String ak = getS3AK()
String sk = getS3SK()
String s3_endpoint = getS3Endpoint()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import org.junit.Assert
// specific language governing permissions and limitations
// under the License.

suite("test_local_tvf_compression", "p0,tvf") {
suite("test_local_tvf_compression", "p0,tvf,external") {
List<List<Object>> backends = sql """ show backends """
assertTrue(backends.size() > 0)
def be_id = backends[0][0]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import org.junit.Assert
// specific language governing permissions and limitations
// under the License.

suite("test_local_tvf_enclose", "p0,tvf") {
suite("test_local_tvf_enclose", "p0,tvf,external") {
List<List<Object>> backends = sql """ show backends """
assertTrue(backends.size() > 0)
def be_id = backends[0][0]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import org.junit.Assert
// under the License.

// This suit test the `backends` tvf
suite("test_local_tvf_parquet_unsigned_integers", "p0") {
suite("test_local_tvf_parquet_unsigned_integers", "p0,external") {
List<List<Object>> backends = sql """ show backends """
def dataFilePath = context.config.dataPath + "/external_table_p0/tvf/"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import org.junit.Assert
// under the License.

// This suit test the `backends` tvf
suite("test_local_tvf_with_complex_type", "p0") {
suite("test_local_tvf_with_complex_type", "p0,external") {
List<List<Object>> backends = sql """ show backends """
def dataFilePath = context.config.dataPath + "/external_table_p0/tvf/"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import org.junit.Assert
// under the License.

// This suit test the `backends` tvf
suite("test_local_tvf_with_complex_type_element_at", "p0") {
suite("test_local_tvf_with_complex_type_element_at", "p0,external") {
List<List<Object>> backends = sql """ show backends """
assertTrue(backends.size() > 0)
def be_id = backends[0][0]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import org.junit.Assert
// under the License.

// This suit test the `backends` tvf
suite("test_local_tvf_with_complex_type_insertinto_doris", "p0") {
suite("test_local_tvf_with_complex_type_insertinto_doris", "p0,external") {
List<List<Object>> backends = sql """ select * from backends(); """
assertTrue(backends.size() > 0)
def be_id = backends[0][0]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// specific language governing permissions and limitations
// under the License.

suite("test_read_csv_empty_line_as_null", "p0") {
suite("test_read_csv_empty_line_as_null", "p0,external") {
// open nereids
sql """ set enable_nereids_planner=true """
sql """ set enable_fallback_to_original_planner=false """
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// specific language governing permissions and limitations
// under the License.

suite("test_s3_tvf", "p0") {
suite("test_s3_tvf", "p0,external") {
// open nereids
sql """ set enable_nereids_planner=true """
sql """ set enable_fallback_to_original_planner=false """
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// specific language governing permissions and limitations
// under the License.

suite("test_s3_tvf_compression", "p0") {
suite("test_s3_tvf_compression", "p0,external") {

String ak = getS3AK()
String sk = getS3SK()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// specific language governing permissions and limitations
// under the License.

suite("test_s3_tvf_parquet_compress", "p0") {
suite("test_s3_tvf_parquet_compress", "p0,external") {
//parquet data page v2 test


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// specific language governing permissions and limitations
// under the License.

suite("test_s3_tvf_with_resource", "p0") {
suite("test_s3_tvf_with_resource", "p0,external") {
// open nereids
sql """ set enable_nereids_planner=true """
sql """ set enable_fallback_to_original_planner=false """
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import org.junit.Assert
// specific language governing permissions and limitations
// under the License.

suite("test_tvf_csv_line_end", "p0,tvf") {
suite("test_tvf_csv_line_end", "p0,tvf,external") {
List<List<Object>> backends = sql """ show backends """
assertTrue(backends.size() > 0)
def be_id = backends[0][0]
Expand Down

0 comments on commit 43bf9e1

Please sign in to comment.