Fix #235, casting type to json object

This commit is contained in:
steve-chavez
2019-08-26 10:28:03 -05:00
committed by Steve Chávez
parent cb2bf809a7
commit bed1013ecd
4 changed files with 105 additions and 1 deletions
+8
View File
@@ -158,6 +158,9 @@ When certain columns are wide (such as those holding binary data), it is more ef
The default is :sql:`*`, meaning all columns. This value will become more important below in :ref:`resource_embedding`.
Renaming Columns
~~~~~~~~~~~~~~~~
You can rename the columns by prefixing them with an alias followed by the colon ``:`` operator.
.. code-block:: http
@@ -169,6 +172,11 @@ You can rename the columns by prefixing them with an alias followed by the colon
{"fullName": "Jane Doe", "birthDate": "01/12/1998"}
]
.. _casting_columns:
Casting Columns
~~~~~~~~~~~~~~~
Casting the columns is possible by suffixing them with the double colon ``::`` plus the desired type.
.. code-block:: http