@@ -79,7 +79,7 @@ export class TableMutationVisitor extends AbstractQBMutationVisitor implements I
7979 subject_id : field . id . value ,
8080 } )
8181 . $if ( this . dbProvider . isMysql ( ) , ( eb ) => eb . ignore ( ) )
82- . $if ( this . dbProvider . not . isMysql ( ) , ( eb ) => eb . onConflict ( ( ob ) => ob . doNothing ( ) ) )
82+ . $if ( ! this . dbProvider . isMysql ( ) , ( eb ) => eb . onConflict ( ( ob ) => ob . doNothing ( ) ) )
8383 . compile ( )
8484 this . addSql ( sql )
8585
@@ -95,7 +95,7 @@ export class TableMutationVisitor extends AbstractQBMutationVisitor implements I
9595 rollup_table_id : this . table . id . value ,
9696 } )
9797 . $if ( this . dbProvider . isMysql ( ) , ( eb ) => eb . ignore ( ) )
98- . $if ( this . dbProvider . not . isMysql ( ) , ( eb ) => eb . onConflict ( ( ob ) => ob . doNothing ( ) ) )
98+ . $if ( ! this . dbProvider . isMysql ( ) , ( eb ) => eb . onConflict ( ( ob ) => ob . doNothing ( ) ) )
9999 . compile ( )
100100 this . addSql ( sql )
101101 } else if ( field . type === "reference" ) {
@@ -108,7 +108,7 @@ export class TableMutationVisitor extends AbstractQBMutationVisitor implements I
108108 foreign_table_id : field . foreignTableId ,
109109 } )
110110 . $if ( this . dbProvider . isMysql ( ) , ( eb ) => eb . ignore ( ) )
111- . $if ( this . dbProvider . not . isMysql ( ) , ( eb ) => eb . onConflict ( ( ob ) => ob . doNothing ( ) ) )
111+ . $if ( ! this . dbProvider . isMysql ( ) , ( eb ) => eb . onConflict ( ( ob ) => ob . doNothing ( ) ) )
112112 . compile ( )
113113
114114 this . addSql ( sql )
@@ -171,7 +171,7 @@ export class TableMutationVisitor extends AbstractQBMutationVisitor implements I
171171 subject_id : views . view . id . value ,
172172 } )
173173 . $if ( this . dbProvider . isMysql ( ) , ( eb ) => eb . ignore ( ) )
174- . $if ( this . dbProvider . not . isMysql ( ) , ( eb ) => eb . onConflict ( ( ob ) => ob . doNothing ( ) ) )
174+ . $if ( ! this . dbProvider . isMysql ( ) , ( eb ) => eb . onConflict ( ( ob ) => ob . doNothing ( ) ) )
175175 . compile ( )
176176
177177 this . addSql ( sql )
@@ -224,7 +224,7 @@ export class TableMutationVisitor extends AbstractQBMutationVisitor implements I
224224 subject_id : views . form . id ,
225225 } )
226226 . $if ( this . dbProvider . isMysql ( ) , ( eb ) => eb . ignore ( ) )
227- . $if ( this . dbProvider . not . isMysql ( ) , ( eb ) => eb . onConflict ( ( ob ) => ob . doNothing ( ) ) )
227+ . $if ( ! this . dbProvider . isMysql ( ) , ( eb ) => eb . onConflict ( ( ob ) => ob . doNothing ( ) ) )
228228 . compile ( )
229229
230230 this . addSql ( sql )
0 commit comments