1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-17 09:41:06 +03:00
Files
mariadb-columnstore-engine/mysql/queries/subselect/negative/q3.2.negative.sql
2016-01-06 14:08:59 -06:00

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;