File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -658,8 +658,8 @@ export default {
658658 . dryRun ( query , {
659659 mutexObj : this . mutex ,
660660 } )
661- . then ( ( { pivotQuery } ) => {
662- const pivotConfig = ResultSet . getNormalizedPivotConfig ( pivotQuery , this . pivotConfig ) ;
661+ . then ( ( result ) => {
662+ const pivotConfig = ResultSet . getNormalizedPivotConfig ( result ?. pivotQuery , this . pivotConfig ) ;
663663
664664 if ( ! equals ( pivotConfig , this . pivotConfig ) ) {
665665 this . pivotConfig = pivotConfig ;
Original file line number Diff line number Diff line change @@ -648,8 +648,8 @@ export default {
648648 . dryRun ( query , {
649649 mutexObj : this . mutex ,
650650 } )
651- . then ( ( { pivotQuery } ) => {
652- const pivotConfig = ResultSet . getNormalizedPivotConfig ( pivotQuery , this . pivotConfig ) ;
651+ . then ( ( result ) => {
652+ const pivotConfig = ResultSet . getNormalizedPivotConfig ( result ?. pivotQuery , this . pivotConfig ) ;
653653
654654 if ( ! equals ( pivotConfig , this . pivotConfig ) ) {
655655 this . pivotConfig = pivotConfig ;
You can’t perform that action at this time.
0 commit comments