summaryrefslogtreecommitdiffstats
path: root/vendor/xorm.io/xorm/dialects/quote.go
blob: da4e0dd609a7c8de2f1853f301b31ae0dd074967 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2020 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 dialects

// QuotePolicy describes quote handle policy
type QuotePolicy int

// All QuotePolicies
const (
	QuotePolicyAlways QuotePolicy = iota
	QuotePolicyNone
	QuotePolicyReserved
)