@@ -4218,13 +4218,13 @@ function requireNewColumn () {
42184218
42194219 c . groupSum = ( context , ...rest ) => aggregateGroup . apply ( null , [ context , 'sum' , c , table , ...rest ] ) ;
42204220 c . groupAvg = ( context , ...rest ) => aggregateGroup . apply ( null , [ context , 'avg' , c , table , ...rest ] ) ;
4221- c . groupMin = ( context , ...rest ) => aggregateGroup . apply ( null , [ context , 'min' , c , table , ...rest ] ) ;
4222- c . groupMax = ( context , ...rest ) => aggregateGroup . apply ( null , [ context , 'max' , c , table , ...rest ] ) ;
4221+ c . groupMin = ( context , ...rest ) => aggregateGroup . apply ( null , [ context , 'min' , c , table , false , ...rest ] ) ;
4222+ c . groupMax = ( context , ...rest ) => aggregateGroup . apply ( null , [ context , 'max' , c , table , false , ...rest ] ) ;
42234223 c . groupCount = ( context , ...rest ) => aggregateGroup . apply ( null , [ context , 'count' , c , table , false , ...rest ] ) ;
42244224 c . sum = ( context , ...rest ) => aggregate . apply ( null , [ context , 'sum' , c , table , ...rest ] ) ;
42254225 c . avg = ( context , ...rest ) => aggregate . apply ( null , [ context , 'avg' , c , table , ...rest ] ) ;
4226- c . min = ( context , ...rest ) => aggregate . apply ( null , [ context , 'min' , c , table , ...rest ] ) ;
4227- c . max = ( context , ...rest ) => aggregate . apply ( null , [ context , 'max' , c , table , ...rest ] ) ;
4226+ c . min = ( context , ...rest ) => aggregate . apply ( null , [ context , 'min' , c , table , false , ...rest ] ) ;
4227+ c . max = ( context , ...rest ) => aggregate . apply ( null , [ context , 'max' , c , table , false , ...rest ] ) ;
42284228 c . count = ( context , ...rest ) => aggregate . apply ( null , [ context , 'count' , c , table , false , ...rest ] ) ;
42294229
42304230 function self ( context ) {
@@ -9415,13 +9415,13 @@ function requireRelatedColumn () {
94159415
94169416 c . groupSum = ( context , ...rest ) => aggregateGroup . apply ( null , [ context , 'sum' , column , relations , ...rest ] ) ;
94179417 c . groupAvg = ( context , ...rest ) => aggregateGroup . apply ( null , [ context , 'avg' , column , relations , ...rest ] ) ;
9418- c . groupMin = ( context , ...rest ) => aggregateGroup . apply ( null , [ context , 'min' , column , relations , ...rest ] ) ;
9419- c . groupMax = ( context , ...rest ) => aggregateGroup . apply ( null , [ context , 'max' , column , relations , ...rest ] ) ;
9418+ c . groupMin = ( context , ...rest ) => aggregateGroup . apply ( null , [ context , 'min' , column , relations , false , ...rest ] ) ;
9419+ c . groupMax = ( context , ...rest ) => aggregateGroup . apply ( null , [ context , 'max' , column , relations , false , ...rest ] ) ;
94209420 c . groupCount = ( context , ...rest ) => aggregateGroup . apply ( null , [ context , 'count' , column , relations , false , ...rest ] ) ;
94219421 c . sum = ( context , ...rest ) => aggregate . apply ( null , [ context , 'sum' , column , relations , ...rest ] ) ;
94229422 c . avg = ( context , ...rest ) => aggregate . apply ( null , [ context , 'avg' , column , relations , ...rest ] ) ;
9423- c . min = ( context , ...rest ) => aggregate . apply ( null , [ context , 'min' , column , relations , ...rest ] ) ;
9424- c . max = ( context , ...rest ) => aggregate . apply ( null , [ context , 'max' , column , relations , ...rest ] ) ;
9423+ c . min = ( context , ...rest ) => aggregate . apply ( null , [ context , 'min' , column , relations , false , ...rest ] ) ;
9424+ c . max = ( context , ...rest ) => aggregate . apply ( null , [ context , 'max' , column , relations , false , ...rest ] ) ;
94259425 c . count = ( context , ...rest ) => aggregate . apply ( null , [ context , 'count' , column , relations , false , ...rest ] ) ;
94269426 c . self = ( context , ...rest ) => childColumn . apply ( null , [ context , column , relations , ...rest ] ) ;
94279427
@@ -14799,6 +14799,7 @@ function requireIndexBrowser () {
1479914799 connectViaPool . commit = requireCommit ( ) ;
1480014800 connectViaPool . rollback = requireRollback ( ) ;
1480114801 connectViaPool . end = requirePools ( ) . end ;
14802+ connectViaPool . close = connectViaPool . end ;
1480214803 connectViaPool . log = requireLog ( ) . registerLogger ;
1480314804 connectViaPool . on = requireLog ( ) . on ;
1480414805 connectViaPool . off = requireLog ( ) . off ;
0 commit comments