Skip to content
#

distributed-database

Here are 249 public repositories matching this topic...

xuanyu66
xuanyu66 commented Dec 19, 2021

Bug Report

Please answer these questions before submitting your issue. Thanks!

1. Minimal reproduce step (Required)

CREATE DATABASE IF NOT EXISTS tispark_test;
CREATE TABLE IF NOT EXISTS tispark_test.table_test(i int, s varchar(128));
CREATE ROLE IF NOT EXISTS 'test_read', 'test_write';
GRANT SELECT ON tispark_test.table_test TO 'test_read'@'%';
GRANT UPDATE ON `tispa

cockroach
knz
knz commented Nov 1, 2021

Forked from #72227 (initially reported by @amitsadaphule )

Describe the problem

The expected output in the test TestAnonymizeStatementsForReporting (conn_executor_test.go) is overly prescriptive as to the result of formatting an error containing a redacted statement.

Namely, it has particular requirements about how the stack trace is formatted.

This is unnecessary for the test, w

sfc-gh-ajbeamon
sfc-gh-ajbeamon commented Nov 29, 2021

We create a number of threads in various places in our code, and in most cases we do not give these threads names. It could be helpful to have names that make it easier for us to see what a thread is doing. Some examples include:

  1. The network thread created by bindings (some bindings name this thread, others do not)
  2. External network threads (name proposed in #6033)
  3. Trace logging threa
yugabyte-db

Improve this page

Add a description, image, and links to the distributed-database topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the distributed-database topic, visit your repo's landing page and select "manage topics."

Learn more