From 46cd1f067b45f45387fed5cd7593718cdcc182dc Mon Sep 17 00:00:00 2001 From: Kunal Singh Date: Mon, 8 Jul 2024 23:08:23 +0530 Subject: [PATCH] fix: missing dot command description in unknown command message --- cli/main.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cli/main.rs b/cli/main.rs index 8772c31d6..d0c5aa179 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -108,6 +108,9 @@ fn handle_dot_command( println!("Unknown command: {}", args[0]); println!("Available commands:"); println!(" .schema - Display the schema for a specific table"); + println!( + " .opcodes - Display all the opcodes defined by the virtual machine" + ); } }