13 lines
264 B
Go
13 lines
264 B
Go
package jet
|
|
|
|
const (
|
|
// DEFAULT is jet equivalent of SQL DEFAULT
|
|
DEFAULT Keyword = "DEFAULT"
|
|
)
|
|
|
|
// Keyword type
|
|
type Keyword string
|
|
|
|
func (k Keyword) serialize(statement StatementType, out *SQLBuilder, options ...SerializeOption) {
|
|
out.WriteString(string(k))
|
|
}
|