mirror of
https://github.com/MariaDB/server.git
synced 2025-12-07 17:42:39 +03:00
added support for quiet
increased line buffer size
client/mysqltest.c
fixed memory leak
added query logging to result file
added error message logging to result file
added enable_query_log/disable_query_log
mysql-test/mysql-test-run.sh
converted tests to use mysqlmanager
Updated test results
9 lines
311 B
Plaintext
9 lines
311 B
Plaintext
DROP TABLE IF EXISTS t1;
|
|
CREATE TABLE t1 (name CHAR(20) NOT NULL PRIMARY KEY, score SMALLINT NOT NULL, KEY(score));
|
|
INSERT INTO t1 VALUES ('Sasha', 20), ('Matt', 20), ('Monty', 10), ('David', 10), ('Tim', 10), ('Jeremy', 10);
|
|
SELECT COUNT(*) as n, score FROM t1 GROUP BY score;
|
|
n score
|
|
4 10
|
|
2 20
|
|
drop table t1;
|