You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-17 09:41:06 +03:00
7 lines
270 B
SQL
7 lines
270 B
SQL
-- Expect an error here similar to mysql. This should be a specific error number for this condition that we
|
|
-- document.
|
|
-- Here is mysql's error:
|
|
-- ERROR 1242 (21000): Subquery returns more than 1 row
|
|
|
|
select * from sub1 where c1 = (select c1 from sub2) order by 1;
|