Jinsheng Ba

Results 15 issues of Jinsheng Ba

```sql SELECT ('')IS(FALSE); ``` In SQLite3, the above expression is evaluated TRUE, but SQLancer evaluates it FALSE.

## General Question I am trying to start the playground for the latest dev version of TiDB on Ubuntu 16.04, but it fails. ```shell $ tiup playground v6.2.0-alpha-nightly-20220615 tiup is...

type/question

Hi, when I execute the query ";" in the JDBC and get the "The prepared statement has been finalized" error, but there is no error when I execute the query...

waiting for feedback

@oraluben @ColinYoungTaro Great job for your reducer! I am quite interested in it and have several questions when using it. ```sql java -jar sqlancer-2.0.0.jar --num-threads 20 --use-reducer --reduce-ast --username root...

Many DBMSs use similar logic to make sure every table is non-empty. However, this method has some not handled situations: * Expected errors may happen, so tables can not be...

## Bug Report ### 1. Minimal reproduce step (Required) ```sql CREATE TABLE t0(c0 BLOB); CREATE VIEW v0(c0) AS SELECT NULL FROM t0 GROUP BY NULL; SELECT t0.c0 FROM t0 NATURAL...

type/bug
sig/planner
component/expression
severity/major
fuzz/sqlancer
affects-6.5
affects-7.5
affects-8.1

## Bug Report ### 1. Minimal reproduce step (Required) ```sql create table t0(c0 INT); create view v1 as select exists( select 6 from t0 union select c_0 from t0 )...

type/bug
sig/execution
severity/major
may-affects-6.1
fuzz/sqlancer
may-affects-6.5
may-affects-7.1
may-affects-7.5
may-affects-8.1
impact/panic
may-affects-8.5

## Bug Report ### 1. Minimal reproduce step (Required) ```sql select distinct avg(nullif(77.15, PI())); --runtime error: slice bounds out of range [:1] with capacity 0 ``` ### 2. What did...

type/bug
sig/planner
type/regression
severity/major
fuzz/sqlancer
affects-8.1
impact/panic
affects-8.5

## Bug Report ### 1. Minimal reproduce step (Required) ```sql CREATE TABLE t0 (c0 INT); INSERT INTO t0 (c0) VALUES (1); ALTER TABLE t0 SET TIFLASH REPLICA 1; SELECT AVG(0)...

type/bug
sig/execution
severity/major
may-affects-6.1
fuzz/sqlancer
may-affects-6.5
may-affects-7.1
may-affects-7.5
may-affects-8.1
impact/wrong-result
may-affects-8.5

Jira Link: [DB-15997](https://yugabyte.atlassian.net/browse/DB-15997) ### Description Please see this test case: ```sql CREATE TABLE t1(c0 CHAR(100)); INSERT INTO t1(c0) VALUES('a'); SELECT MAX(t1.c0) FROM t1; ``` The query returns the column with...

kind/bug
area/ysql
priority/medium