From 6792e40eb19a9c3051f2be938b2be1970bec2668 Mon Sep 17 00:00:00 2001 From: Rafi Shamim Date: Mon, 28 Oct 2024 21:09:22 +0000 Subject: [PATCH] sql: check object type when revoking Release note (bug fix): Fix an unhandled error that could occur when using `REVOKE ... ON SEQUENCE FROM ... user` on an object that is not a sequence. --- pkg/sql/test_file_751.go | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 pkg/sql/test_file_751.go diff --git a/pkg/sql/test_file_751.go b/pkg/sql/test_file_751.go new file mode 100644 index 000000000000..6a7c1b52edf0 --- /dev/null +++ b/pkg/sql/test_file_751.go @@ -0,0 +1,12 @@ + + // Package sql + package sql + + // TestFunction is a sample test function created for commit 0a2d0c85 + func TestFunction() { + // Test implementation + // Original commit SHA: 0a2d0c852ac86b87fdfff0d78246a84236ef43d5 + // Added on: 2024-12-19T23:08:30.998248 + // This is a single file change for demonstration + } + \ No newline at end of file