Fix #137, unix socket connection

This commit is contained in:
steve-chavez
2018-05-28 13:26:18 -05:00
committed by Steve Chávez
parent 625a0b2393
commit b11f9ef386
2 changed files with 4 additions and 0 deletions
+2
View File
@@ -145,6 +145,7 @@ You can rename the columns by prefixing them with an alias followed by the colon
.. code-block:: http
GET /people?select=fullName:full_name,birthDate:birth_date HTTP/1.1
[
{"fullName": "John Doe", "birthDate": "04/25/1988"},
{"fullName": "Jane Doe", "birthDate": "01/12/1998"}
@@ -155,6 +156,7 @@ Casting the columns is possible by suffixing them with the double colon ``::`` p
.. code-block:: http
GET /people?select=full_name,salary::text HTTP/1.1
[
{"fullName": "John Doe", "salary": "90000.00"},
{"fullName": "Jane Doe", "salary": "120000.00"}