Details
- 
    
Bug
 - 
    Status: Closed (View Workflow)
 - 
    
Major
 - 
    Resolution: Duplicate
 - 
    11.2.4
 - 
    None
 - 
    Docker on windows, using the images from here https://hub.docker.com/_/mariadb/tags
 
Description
I'm connecting to MariaDB using JDBC (e.g. from my own application, or using Dbeaver). I'll run this statement:
					select
			 | 
		
					  json_objectagg(t.k, t.v) over (order by t.k)
			 | 
		
					from (
			 | 
		
					  select
			 | 
		
					    t.*
			 | 
		
					  from (
			 | 
		
					    select
			 | 
		
					      'a' as k,
			 | 
		
					      1 as v
			 | 
		
					  ) t
			 | 
		
					) as t
			 | 
		
					order by t.k;
			 | 
		
And get this error:
					SQL Error [08000]: Socket fail to connect to host:address=(host=localhost)(port=3307)(type=primary). Connection refused: no further information
			 | 
		
This effectively crashes the server
Attachments
Issue Links
- duplicates
 - 
                    
MDEV-32396 Segmentation fault at /mariadb-11.3.0/sql/sql_select.cc:27583
-         
 - Confirmed
 
 -