Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Integer_overflow (0.06 sec)

  1. doc/go_spec.html

    the most negative value for the int type of <code>x</code>, the quotient
    <code>q = x / -1</code> is equal to <code>x</code> (and <code>r = 0</code>)
    due to two's-complement <a href="#Integer_overflow">integer overflow</a>:
    </p>
    
    <pre>
                             x, q
    int8                     -128
    int16                  -32768
    int32             -2147483648
    int64    -9223372036854775808
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue May 06 19:12:15 UTC 2025
    - 286.2K bytes
    - Viewed (0)
  2. cmd/api-errors.go

    		Description:    "Incorrect number of arguments in the function call in the SQL expression.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrIntegerOverflow: {
    		Code:           "IntegerOverflow",
    		Description:    "Int overflow or underflow in the SQL expression.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrLikeInvalidInputs: {
    		Code:           "LikeInvalidInputs",
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Apr 16 07:34:24 UTC 2025
    - 93K bytes
    - Viewed (1)
Back to top