Cherry-picked from #46622 Co-authored-by: zgxme <zhenggaoxiong@selectdb.com>
This commit is contained in:
committed by
GitHub
parent
e5000c21ef
commit
eeabf7c508
@ -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")
|
||||
|
||||
@ -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");
|
||||
|
||||
@ -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)
|
||||
|
||||
@ -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()
|
||||
|
||||
@ -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]
|
||||
|
||||
@ -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]
|
||||
|
||||
@ -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/"
|
||||
|
||||
|
||||
@ -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/"
|
||||
|
||||
|
||||
@ -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]
|
||||
|
||||
@ -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]
|
||||
|
||||
@ -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 """
|
||||
|
||||
@ -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 """
|
||||
|
||||
@ -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()
|
||||
|
||||
@ -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
|
||||
|
||||
|
||||
|
||||
@ -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 """
|
||||
|
||||
@ -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]
|
||||
|
||||
Reference in New Issue
Block a user