Details
- 
    
Task
 - 
    Status: Closed (View Workflow)
 - 
    
Major
 - 
    Resolution: Fixed
 - 
    None
 - 
    None
 
Description
after spec batch clarification : https://github.com/r2dbc/r2dbc-spi/issues/229
driver is too permissive in that area and should be corrected. 
i.e.:
					statement.bind(0, 0).add()  | 
		
					.bind(0, 1).add()  | 
		
					.bind(0, 2).add().execute();  | 
		
should fails.
correct behavior is :
					statement.bind(0, 0).add()  | 
		
					.bind(0, 1).add()  | 
		
					.bind(0, 2).execute();  |