- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for errUnsupportedSyntax (0.06 sec)
-
cmd/apierrorcode_string.go
_ = x[ErrInvalidTableAlias-246] _ = x[ErrMissingRequiredParameter-247] _ = x[ErrObjectSerializationConflict-248] _ = x[ErrUnsupportedSQLOperation-249] _ = x[ErrUnsupportedSQLStructure-250] _ = x[ErrUnsupportedSyntax-251] _ = x[ErrUnsupportedRangeHeader-252] _ = x[ErrLexerInvalidChar-253] _ = x[ErrLexerInvalidOperator-254] _ = x[ErrLexerInvalidLiteral-255] _ = x[ErrLexerInvalidIONLiteral-256]
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Wed Apr 16 07:34:24 UTC 2025 - 21.6K bytes - Viewed (0) -
internal/s3select/unused-errors.go
return &s3Error{ code: "InvalidTableAlias", message: "The SQL expression contains an invalid table alias.", statusCode: 400, cause: err, } } func errUnsupportedSyntax(err error) *s3Error { return &s3Error{ code: "UnsupportedSyntax", message: "Encountered invalid syntax.", statusCode: 400, cause: err, } }
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Tue Feb 20 08:16:35 UTC 2024 - 17.5K bytes - Viewed (0)