From 91cd54681c892ce33abf529ba55360452676b60d Mon Sep 17 00:00:00 2001 From: Oliver Tan Date: Thu, 12 Aug 2021 11:33:55 +1000 Subject: [PATCH] parser: remove support for RESET SESSION_USER Release note (sql change): Remove support for RESET SESSION_USER. This is not supported in postgres, and currently errors anyway. --- pkg/sql/parser/sql.y | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/sql/parser/sql.y b/pkg/sql/parser/sql.y index d41803092a21..697453c2359b 100644 --- a/pkg/sql/parser/sql.y +++ b/pkg/sql/parser/sql.y @@ -4880,7 +4880,6 @@ session_var: // See https://www.postgresql.org/docs/9.6/static/multibyte.html#AEN39236 | NAMES { $$ = "client_encoding" } | ROLE -| SESSION_USER // TIME ZONE is special: it is two tokens, but is really the identifier "TIME ZONE". | TIME ZONE { $$ = "timezone" } | TIME error // SHOW HELP: SHOW SESSION