Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AddClauseIfNotExists (0.08 sec)

  1. callbacks/query.go

    						Expression: clause.NamedExpr{SQL: join.Name, Vars: join.Conds},
    					})
    				}
    			}
    
    			db.Statement.AddClause(fromClause)
    		} else {
    			db.Statement.AddClauseIfNotExists(clause.From{})
    		}
    
    		db.Statement.AddClauseIfNotExists(clauseSelect)
    
    		db.Statement.Build(db.Statement.BuildClauses...)
    	}
    }
    
    func Preload(db *gorm.DB) {
    	if db.Error == nil && len(db.Statement.Preloads) > 0 {
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Thu Aug 22 11:03:42 UTC 2024
    - 10.1K bytes
    - Viewed (1)
  2. finisher_api.go

    				column = f.DBName
    			}
    		}
    	}
    
    	if len(tx.Statement.Selects) != 1 {
    		fields := strings.FieldsFunc(column, utils.IsValidDBNameChar)
    		tx.Statement.AddClauseIfNotExists(clause.Select{
    			Distinct: tx.Statement.Distinct,
    			Columns:  []clause.Column{{Name: column, Raw: len(fields) != 1}},
    		})
    	}
    	tx.Statement.Dest = dest
    	return tx.callbacks.Query().Execute(tx)
    }
    
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Sat Sep 14 12:58:29 UTC 2024
    - 22.8K bytes
    - Viewed (0)
Back to top