Skip to content

Latest commit

 

History

History
127 lines (85 loc) · 3.56 KB

casts.rst

File metadata and controls

127 lines (85 loc) · 3.56 KB

Casts

There are different ways that casts appear in EdgeQL.

Explicit Casts

A type cast expression converts the specified value to another value of the specified type:

.. eql:synopsis::

    "<" <type> ">" <expression>

The :eql:synopsis:`<type>` must be a valid :ref:`type expression <ref_eql_types>` denoting a non-abstract scalar or a container type.

For example, the following expression casts an integer value into a string:

db> select <str>10;
{"10"}

See the :eql:op:`type cast operator <cast>` section for more information on type casting rules.

Assignment Casts

Assignment casts happen when inserting new objects. Numeric types will often be automatically cast into the specific type corresponding to the property they are assigned to. This is to avoid extra typing when dealing with numeric value using fewer bits:

# Automatically cast a literal 42 (which is int64
# by default) into an int16 value.
insert MyObject {
    int16_val := 42
};

If assignment casting is supported for a given pair of types, explicit casting of those types is also supported.

Implicit Casts

Implicit casts happen automatically whenever the value type doesn't match the expected type in an expression. This is mostly supported for numeric casts that don't incur any potential information loss (in form of truncation), so typically from a less precise type, to a more precise one. The :eql:type:`int64` to :eql:type:`float64` is a notable exception, which can suffer from truncation of significant digits for very large integer values. There are a few scenarios when implicit casts can occur:

  1. Passing arguments that don't match exactly the types in the function signature:

    db> with x := <float32>12.34
    ... select math::ceil(x);
    {13}
    

    The function :eql:func:`math::ceil` only takes :eql:type:`int64`, :eql:type:`float64`, :eql:type:`bigint`, or :eql:type:`decimal` as its argument. So the :eql:type:`float32` value will be implicitly cast into a :eql:type:`float64` in order to match a valid signature.

  2. Using operands that don't match exactly the types in the operator signature (this works the same way as for functions):

    db> select 1 + 2.3;
    {3.3}
    

    The operator :eql:op:`+ <plus>` is defined only for operands of the same type, so in the expression above the :eql:type:`int64` value 1 is implicitly cast into a :eql:type:`float64` in order to match the other operand and produce a valid signature.

  3. Mixing different numeric types in a set:

    db> select {1, 2.3, <float32>4.5} is float64;
    {true, true, true}
    

    All elements in a set have to be of the same type, so the values are cast into :eql:type:`float64` as that happens to be the common type to which all the set elements can be implicitly cast. This would work out the same way if :eql:op:`union` was used instead:

    db> select (1 union 2.3 union <float32>4.5) is float64;
    {true, true, true}
    

If implicit casting is supported for a given pair of types, assignment and explicit casting of those types is also supported.

Casting Table

  • <> - can be cast explicitly
  • := - assignment cast is supported
  • "impl" - implicit cast is supported