Fix style

pull/8025/head
Hanefi Onaldi 2025-06-23 22:01:31 +03:00
parent 0b246f4770
commit 7104b8a541
No known key found for this signature in database
GPG Key ID: 4F2751ACD9D63F8D
2 changed files with 7 additions and 7 deletions

View File

@ -11,9 +11,9 @@ SET citus.enable_change_data_capture = true;
SHOW dynamic_library_path; SHOW dynamic_library_path;
-- Verify that the dynamic_library_path has been modified to include citus_decoders -- Verify that the dynamic_library_path has been modified to include citus_decoders
SELECT SELECT
CASE CASE
WHEN current_setting('dynamic_library_path') LIKE '%citus_decoders%' WHEN current_setting('dynamic_library_path') LIKE '%citus_decoders%'
THEN 'CDC path correctly set' THEN 'CDC path correctly set'
ELSE 'CDC path incorrectly not set' ELSE 'CDC path incorrectly not set'
END AS cdc_path_status; END AS cdc_path_status;
@ -28,9 +28,9 @@ SET citus.enable_change_data_capture = true;
SHOW dynamic_library_path; SHOW dynamic_library_path;
-- Verify that path is unchanged with custom library path -- Verify that path is unchanged with custom library path
SELECT SELECT
CASE CASE
WHEN current_setting('dynamic_library_path') LIKE '%citus_decoders%' WHEN current_setting('dynamic_library_path') LIKE '%citus_decoders%'
THEN 'CDC path incorrectly set' THEN 'CDC path incorrectly set'
ELSE 'CDC path correctly not set' ELSE 'CDC path correctly not set'
END AS custom_path_test; END AS custom_path_test;

View File

@ -24,4 +24,4 @@ RESET citus.enable_change_data_capture;
RESET dynamic_library_path; RESET dynamic_library_path;
SHOW citus.enable_change_data_capture; SHOW citus.enable_change_data_capture;
SHOW dynamic_library_path; SHOW dynamic_library_path;