We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 170cd11 commit e6408e8Copy full SHA for e6408e8
ast/element/datatype.go
@@ -45,6 +45,7 @@ const (
45
DataDefSmallInt
46
DataDefDoublePrecision
47
DataDefReal
48
+ DataDefXMLType
49
)
50
51
type datatype struct {
@@ -167,4 +168,8 @@ type NClob struct {
167
168
169
type BFile struct {
170
datatype
171
+}
172
+
173
+type XMLType struct {
174
+ datatype
175
}
lexer.go
@@ -307,6 +307,7 @@ var unReservedKeyword = map[string]int{
307
"varying": _varying,
308
"visible": _visible,
309
"write": _write,
310
+ "xmltype": _XMLType,
311
"year": _year,
312
"zone": _zone,
313
0 commit comments