You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
610 B
31 lines
610 B
package clause |
|
|
|
type Locking struct { |
|
Strength string |
|
Table Table |
|
Options string |
|
} |
|
|
|
// Name where clause name |
|
func (locking Locking) Name() string { |
|
return "FOR" |
|
} |
|
|
|
// Build build where clause |
|
func (locking Locking) Build(builder Builder) { |
|
builder.WriteString(locking.Strength) |
|
if locking.Table.Name != "" { |
|
builder.WriteString(" OF ") |
|
builder.WriteQuoted(locking.Table) |
|
} |
|
|
|
if locking.Options != "" { |
|
builder.WriteByte(' ') |
|
builder.WriteString(locking.Options) |
|
} |
|
} |
|
|
|
// MergeClause merge order by clauses |
|
func (locking Locking) MergeClause(clause *Clause) { |
|
clause.Expression = locking |
|
}
|
|
|