fix: missing dot command description in unknown command message

This commit is contained in:
Kunal Singh 2024-07-08 23:08:23 +05:30
parent 0e60f077ca
commit 46cd1f067b

View file

@ -108,6 +108,9 @@ fn handle_dot_command(
println!("Unknown command: {}", args[0]);
println!("Available commands:");
println!(" .schema <table_name> - Display the schema for a specific table");
println!(
" .opcodes - Display all the opcodes defined by the virtual machine"
);
}
}