Skip to content

Commit 2c6295c

Browse files
committed
removed nested from unsupported_args in datatype_sql
1 parent 3ec9a98 commit 2c6295c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sqlglot/dialects/singlestore.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1761,7 +1761,7 @@ def jsonarraycontains_sql(self, expression: exp.JSONArrayContains) -> str:
17611761
self.func("TO_JSON", expression.this),
17621762
)
17631763

1764-
@unsupported_args("kind", "nested", "values")
1764+
@unsupported_args("kind", "values")
17651765
def datatype_sql(self, expression: exp.DataType) -> str:
17661766
if expression.is_type(exp.DataType.Type.VARBINARY) and not expression.expressions:
17671767
# `VARBINARY` must always have a size - if it doesn't, we always generate `BLOB`

0 commit comments

Comments
 (0)