Skip to content

Commit c3aff3c

Browse files
committed
temporary turn check for async insert off
1 parent e564020 commit c3aff3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/docker_scripts/upgrade_runner.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ then
157157
old_settings.value AS old_value
158158
FROM new_settings
159159
LEFT JOIN old_settings ON new_settings.name = old_settings.name
160-
WHERE (old_value IS NULL OR new_value != old_value)
160+
WHERE (old_value IS NULL OR new_value != old_value) AND name != 'async_insert'
161161
AND (name NOT IN (
162162
SELECT arrayJoin(tupleElement(changes, 'name'))
163163
FROM

0 commit comments

Comments
 (0)