File tree 1 file changed +2
-19
lines changed
backends-clickhouse/src/test/scala/org/apache/gluten/utils
1 file changed +2
-19
lines changed Original file line number Diff line number Diff line change @@ -34,29 +34,12 @@ object UTSystemParameters {
34
34
UTSystemParameters .TEST_DATA_DISK_OUTPUT_KEY ,
35
35
UTSystemParameters .TEST_DATA_DISK_OUTPUT_DEFAULT_VALUE )
36
36
}
37
-
38
- private val TPCDS_DATA_PATH_KEY = " tpcds.data.path"
39
- private val TPCDS_DATA_DECIMAL_PATH_KEY = " tpcds.data.decimal.path"
40
37
private val TPCDS_RELATIVE_DATA_PATH = " tpcds-data-sf1"
41
38
private val TPCDS_DECIMAL_RELATIVE_DATA_PATH = " tpcds-data-sf1-decimal"
42
39
43
- def tpcdsDataPath : String = {
44
- val result = System .getProperty(UTSystemParameters .TPCDS_DATA_PATH_KEY , null )
45
- if (result == null ) {
46
- s " $testDataPath/ $TPCDS_RELATIVE_DATA_PATH"
47
- } else {
48
- result
49
- }
50
- }
40
+ def tpcdsDataPath : String = s " $testDataPath/ $TPCDS_RELATIVE_DATA_PATH"
51
41
52
- def tpcdsDecimalDataPath : String = {
53
- val result = System .getProperty(UTSystemParameters .TPCDS_DATA_DECIMAL_PATH_KEY , null )
54
- if (result == null ) {
55
- s " $testDataPath/ $TPCDS_DECIMAL_RELATIVE_DATA_PATH"
56
- } else {
57
- result
58
- }
59
- }
42
+ def tpcdsDecimalDataPath : String = s " $testDataPath/ $TPCDS_DECIMAL_RELATIVE_DATA_PATH"
60
43
61
44
private val TEST_MERGETREE_ON_OBJECT_STORAGE = " gluten.ch.test.mergetree.object.storage"
62
45
private val TEST_MERGETREE_ON_OBJECT_STORAGE_DEFAULT_VALUE = " true"
You can’t perform that action at this time.
0 commit comments