1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-01 06:46:55 +03:00

Fix tests' results to match new diagnostics

This commit is contained in:
Serguey Zefirov
2024-11-29 13:16:52 +03:00
committed by Leonid Fedorov
parent eaba4d33b4
commit 28bf654d85
7 changed files with 11 additions and 11 deletions

View File

@ -13,7 +13,7 @@ SELECT COUNT(*) FROM t1;
COUNT(*)
2
DELETE FROM t1 WHERE unknown = 2;
ERROR 42S22: Unknown column 'unknown' in 'where clause'
ERROR 42S22: Unknown column 'unknown' in 'WHERE'
INSERT INTO t1 VALUES (1, NULL);
DELETE FROM t1 WHERE b IS NULL;
SELECT COUNT(*) FROM t1;