Copilot commented on code in PR #63555:
URL: https://github.com/apache/doris/pull/63555#discussion_r3292022052
##########
regression-test/suites/external_table_p0/paimon/test_paimon_gcs.groovy:
##########
@@ -57,6 +58,7 @@ suite("test_paimon_gcs",
"p0,external,doris,new_catalog_property") {
CREATE CATALOG ${catalog_name}_with_region PROPERTIES (
'type' = 'paimon',
'warehouse' = '${gcs_warehouse}',
+ 'fs.gcs.support' = 'true',
Review Comment:
The same GCS-specific catalog property is duplicated in two catalog
definitions. To reduce drift and make future updates safer, extract this into a
shared variable/object (e.g., a common properties map or a shared string
fragment) that both CREATE CATALOG statements reuse.
##########
regression-test/suites/external_table_p0/paimon/test_paimon_gcs.groovy:
##########
@@ -32,6 +32,7 @@ suite("test_paimon_gcs",
"p0,external,doris,new_catalog_property") {
CREATE CATALOG ${catalog_name} PROPERTIES (
'type' = 'paimon',
'warehouse' = '${gcs_warehouse}',
+ 'fs.gcs.support' = 'true',
Review Comment:
The same GCS-specific catalog property is duplicated in two catalog
definitions. To reduce drift and make future updates safer, extract this into a
shared variable/object (e.g., a common properties map or a shared string
fragment) that both CREATE CATALOG statements reuse.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]