From 46bd9aacc6ca99f3ec621192df18f47435c6395f Mon Sep 17 00:00:00 2001 From: Daylon Wilkins Date: Tue, 28 May 2024 23:12:15 -0700 Subject: [PATCH] Added new session variable --- go/libraries/doltcore/sqle/dsess/session.go | 1 + 1 file changed, 1 insertion(+) diff --git a/go/libraries/doltcore/sqle/dsess/session.go b/go/libraries/doltcore/sqle/dsess/session.go index 49eda9afc0..27e34754ce 100644 --- a/go/libraries/doltcore/sqle/dsess/session.go +++ b/go/libraries/doltcore/sqle/dsess/session.go @@ -50,6 +50,7 @@ var ErrSessionNotPersistable = errors.New("session is not persistable") // DoltSession is the sql.Session implementation used by dolt. It is accessible through a *sql.Context instance type DoltSession struct { sql.Session + DoltgresSessObj any // This is used by Doltgres to persist objects in the session. This is not used by Dolt. username string email string dbStates map[string]*DatabaseSessionState