Files
wehub-resource-sync 5357c39144
Fuzzer / Run Fuzzer (push) Has been cancelled
Race tests / Go race tests (ubuntu-22.04) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:01:40 +08:00

29 lines
617 B
Plaintext
Executable File

#!/usr/bin/expect
spawn dolt sql
set first $spawn_id
expect -i first -re "\rdolt_repo_.*> "
send -i first "CREATE TABLE test_expect (pk int primary key);\r"
expect -i first "CREATE TABLE test_expect (pk int primary key);\r"
expect -i first -re "\rdolt_repo_.*> "
# spawn the second process
spawn dolt sql
set second $spawn_id
expect -i second -re "\rdolt_repo.*> "
send -i second "show tables;\r"
expect -i second "show tables;\r"
expect -i second -re "\rdolt_repo.*> "
send -i first "quit\r"
send -i second "quit\r"
expect -i first "quit\r"
expect -i second "quit\r"
expect -i first eof
expect -i second eof