From a1946bc11951ea381d0931a0931c12cd4edaf6ac Mon Sep 17 00:00:00 2001 From: "Sean R. Abraham" Date: Wed, 28 May 2025 07:39:11 -0400 Subject: [PATCH] fix NewServer call this is a followup to https://github.com/dolthub/go-mysql-server/pull/2989 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a80db8cba3..0859681244 100644 --- a/README.md +++ b/README.md @@ -122,7 +122,7 @@ func main() { Protocol: "tcp", Address: fmt.Sprintf("%s:%d", address, port), } - s, err := server.NewServer(config, engine, memory.NewSessionBuilder(pro), nil) + s, err := server.NewServer(config, engine, sql.NewContext, memory.NewSessionBuilder(pro), nil) if err != nil { panic(err) }