Files
maxwarden/tools/jet-2.12.0/internal/jet/keyword.go
2025-03-06 23:54:11 -05:00

14 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))
}