mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-29 18:03:32 -04:00
In a few previous PR's we restructured the ES|QL docs to make it possible to generate them dynamically. This PR just moves a few files around to make the query languages docs easier to work with, and a little more organized like the ES|QL docs. A bit part of this was setting up redirects to the new locations, so other repo's could correctly link to the elasticsearch docs.
432 B
432 B
mapped_pages | |
---|---|
|
Cast Operators [sql-operators-cast]
Cast (::)
[sql-operators-cast-cast]
::
provides an alternative syntax to the CAST
function.
SELECT '123'::long AS long;
long
---------------
123