Doc fix: editing text about escaping

This commit is contained in:
ogorbacheva 2019-01-22 14:10:55 +03:00
parent 3a38d4ed50
commit fd7c1589bb

View File

@ -357,11 +357,11 @@ SELECT * FROM t_null
Rows are not escaped in `Pretty` format: Rows are not escaped in `Pretty` format:
``` sql ``` sql
:) SELECT 'String with \'quotes\' and \t character' AS Test_escaping :) SELECT 'String with \'quotes\' and \t character' AS Escaping_test
FORMAT Pretty FORMAT Pretty;
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
Test_escaping Escaping_test
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ String with 'quotes' and character │ │ String with 'quotes' and character │
└───────────────────────────────────────────┘ └───────────────────────────────────────────┘