init - add project files
This commit is contained in:
13
tools/jet-2.12.0/internal/jet/keyword.go
Normal file
13
tools/jet-2.12.0/internal/jet/keyword.go
Normal file
@@ -0,0 +1,13 @@
|
||||
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))
|
||||
}
|
||||
Reference in New Issue
Block a user