Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Symbol (0.19 sec)

  1. internal/s3select/unused-errors.go

    		cause:      err,
    	}
    }
    
    func errParseMissingIdentAfterAt(err error) *s3Error {
    	return &s3Error{
    		code:       "ParseMissingIdentAfterAt",
    		message:    "Did not find the expected identifier after the @ symbol in the SQL expression.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errParseUnexpectedOperator(err error) *s3Error {
    	return &s3Error{
    		code:       "ParseUnexpectedOperator",
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Tue Feb 20 08:16:35 GMT 2024
    - 17.5K bytes
    - Viewed (0)
  2. internal/disk/directio_unsupported.go

    // OpenBSD, Windows, and illumos do not support O_DIRECT.
    // On Windows there is no documentation on disabling O_DIRECT.
    // For these systems we do not attempt to build the 'directio' dependency since
    // the O_DIRECT symbol may not be exposed resulting in a failed build.
    //
    //
    // On illumos an explicit O_DIRECT flag is not necessary for two primary
    // reasons. Note that ZFS is effectively the default filesystem on illumos
    // systems.
    //
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Wed Oct 18 18:08:15 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  3. internal/s3select/sql/evaluate.go

    	if lerr != nil || len(e.Right) == 0 {
    		return lval, lerr
    	}
    
    	// Process remaining child nodes - result must be
    	// numeric. This AST node is for terms separated by + or -
    	// symbols.
    	for _, rightTerm := range e.Right {
    		op := rightTerm.Op
    		rval, rerr := rightTerm.Right.evalNode(r, tableAlias)
    		if rerr != nil {
    			return nil, rerr
    		}
    		err := lval.arithOp(op, rval)
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Dec 23 07:19:11 GMT 2023
    - 12K bytes
    - Viewed (0)
  4. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrParseMissingIdentAfterAt: {
    		Code:           "ParseMissingIdentAfterAt",
    		Description:    "Did not find the expected identifier after the @ symbol in the SQL expression.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrParseUnexpectedOperator: {
    		Code:           "ParseUnexpectedOperator",
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Apr 06 05:26:02 GMT 2024
    - 90.2K bytes
    - Viewed (6)
Back to top