This commit is contained in:
Raúl Marín 2024-08-07 16:24:56 +02:00
parent 5f34171534
commit aca7e6734c

View File

@ -20,7 +20,9 @@ with client(name="client1>", log=log) as client1, client(
client1.expect(prompt)
client2.expect(prompt)
client1.send("SET enable_analyzer = 0, function_sleep_max_microseconds_per_block=10000000")
client1.send(
"SET enable_analyzer = 0, function_sleep_max_microseconds_per_block=10000000"
)
client1.expect(prompt)
client1.send("SET allow_experimental_window_view = 1")
client1.expect(prompt)
@ -28,7 +30,9 @@ with client(name="client1>", log=log) as client1, client(
client1.expect(prompt)
client2.send("SET allow_experimental_window_view = 1")
client2.expect(prompt)
client2.send("SET enable_analyzer = 0, function_sleep_max_microseconds_per_block=10000000")
client2.send(
"SET enable_analyzer = 0, function_sleep_max_microseconds_per_block=10000000"
)
client2.expect(prompt)
client1.send("CREATE DATABASE IF NOT EXISTS 01056_window_view_proc_hop_watch")