DDL: 
                CREATE TABLE `SourceTable_14496853782565489535` (
                    Key Uint32,
                    Key2 Uuid,
                    v01 Uuid,
                    v02 Uuid NOT NULL,
                    v03 Double,
                    PRIMARY KEY (Key, Key2)
                );
        
>>>>> Query: 
            UPSERT INTO `SourceTable_14496853782565489535` (Key,Key2,v01,v02,v03) VALUES
            (
                1,
                CAST("00078af5-0000-0000-6c0b-040000000000" as Uuid),
                CAST("00078af5-0000-0000-6c0b-040000000001" as Uuid),
                UNWRAP(CAST("00078af5-0000-0000-6c0b-040000000002" as Uuid)),
                CAST("311111111113.222222223" as Double)
            );
        
DDL: 
            CREATE ASYNC REPLICATION `Replication_14496853782565489535`
            FOR `SourceTable_14496853782565489535` AS `Table_14496853782565489535`
            WITH (
                CONNECTION_STRING = 'grpc://localhost:12039/?database=local'
            );
        
>>>>> Query: SELECT `Key2`, `v01`, `v02`, `v03` FROM `Table_14496853782565489535` ORDER BY `Key2`, `v01`, `v02`, `v03`
>>>>> Query error: <main>: Error: Type annotation, code: 1030
    <main>:1:1: Error: At function: KiReadTable!
        <main>:1:1: Error: Cannot find table 'db.[/local/Table_14496853782565489535]' because it does not exist or you do not have access permissions. Please check correctness of table path and user permissions., code: 2003
Attempt=19 count=-1
>>>>> Query: SELECT `Key2`, `v01`, `v02`, `v03` FROM `Table_14496853782565489535` ORDER BY `Key2`, `v01`, `v02`, `v03`
Attempt=18 count=1
DDL: DROP ASYNC REPLICATION `Replication_14496853782565489535`;

Traceback (most recent call last):
  File "library/python/testing/yatest_common/yatest/common/process.py", line 384, in wait
    wait_for(
  File "library/python/testing/yatest_common/yatest/common/process.py", line 765, in wait_for
    raise TimeoutError(truncate(message, MAX_MESSAGE_LEN))
yatest.common.process.TimeoutError: 600 second(s) wait timeout has expired: Command '['/home/runner/.ya/tools/v4/10658668958/test_tool', 'run_ut', '@/home/runner/.ya/build/build_root/47xt/0003aa/ydb/tests/functional/replication/test-results/unittest/testing_out_stuff/test_tool.args']' stopped by 600 seconds timeout

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "devtools/ya/test/programs/test_tool/run_test/run_test.py", line 1772, in main
    res.wait(check_exit_code=False, timeout=current_run_test_timeout, on_timeout=timeout_callback)
  File "library/python/testing/yatest_common/yatest/common/process.py", line 398, in wait
    raise ExecutionTimeoutError(self, str(e))
yatest.common.process.ExecutionTimeoutError: (("600 second(s) wait timeout has expired: Command '['/home/runner/.ya/tools/v4/10658668958/test_tool', 'run_ut', '@/home/runner/.ya/build/build_root/47xt/0003aa/ydb/tests/functional/replication/test-results/unittest/testing_out_stuff/test_tool.args']' stopped by 600 seconds timeout",), {})
