Merge pull request #31849 from ClickHouse/tavplubix-patch-5

Update 01155_rename_move_materialized_view.sql
This commit is contained in:
tavplubix 2021-11-26 14:09:56 +03:00 committed by GitHub
commit b68f0df8b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,8 +48,8 @@ DROP DATABASE test_01155_ordinary;
USE default; USE default;
INSERT INTO test_01155_atomic.src(s) VALUES ('after moving tables'); INSERT INTO test_01155_atomic.src(s) VALUES ('after moving tables');
--SELECT materialize(2), substr(_table, 1, 10), s FROM merge('test_01155_atomic', '') ORDER BY _table, s; -- { serverError 81 } SELECT materialize(2), substr(_table, 1, 10), s FROM merge('test_01155_atomic', '') ORDER BY _table, s; -- { serverError 81 }
--SELECT dictGet('test_01155_ordinary.dict', 'x', 'after moving tables'); -- { serverError 36 } SELECT dictGet('test_01155_ordinary.dict', 'x', 'after moving tables'); -- { serverError 36 }
RENAME DATABASE test_01155_atomic TO test_01155_ordinary; RENAME DATABASE test_01155_atomic TO test_01155_ordinary;
USE test_01155_ordinary; USE test_01155_ordinary;