Remove duplicated code

This commit is contained in:
Lunny Xiao 2021-07-29 12:47:42 +08:00
parent 934df04ca4
commit 9fe6702252
1 changed files with 0 additions and 14 deletions

View File

@ -1,14 +0,0 @@
// Copyright 2017 The Xorm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package statements
type cascadeMode int
const (
cascadeCompitable cascadeMode = iota // load field beans with another SQL with no
cascadeEager // load field beans with another SQL
cascadeJoin // load field beans with join
cascadeLazy // don't load anything
)