Skip to content

Commit

Permalink
Remove a test for a feature not backported to 2.x.
Browse files Browse the repository at this point in the history
Signed-off-by: Yury-Fridlyand <yury.fridlyand@improving.com>
  • Loading branch information
Yury-Fridlyand committed Jul 11, 2023
1 parent 70686f7 commit b69958a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/user/general/datatypes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -434,13 +434,13 @@ String Data Types

A string is a sequence of characters enclosed in either single or double quotes. For example, both 'text' and "text" will be treated as string literal. To use quote characters in a string literal, you can use two quotes of the same type as the enclosing quotes or a backslash symbol (``\``)::

os> SELECT 'hello', "world", '"hello"', "'world'", '''hello''', """world""", 'I\'m', 'I''m', "I\"m"
os> SELECT 'hello', "world", '"hello"', "'world'", '''hello''', """world"""
fetched rows / total rows = 1/1
+-----------+-----------+-------------+-------------+---------------+---------------+----------+----------+----------+
| 'hello' | "world" | '"hello"' | "'world'" | '''hello''' | """world""" | 'I\'m' | 'I''m' | "I\"m" |
|-----------+-----------+-------------+-------------+---------------+---------------+----------+----------+----------|
| hello | world | "hello" | 'world' | 'hello' | "world" | I'm | I'm | I"m |
+-----------+-----------+-------------+-------------+---------------+---------------+----------+----------+----------+
+-----------+-----------+-------------+-------------+---------------+---------------+
| 'hello' | "world" | '"hello"' | "'world'" | '''hello''' | """world""" |
|-----------+-----------+-------------+-------------+---------------+---------------|
| hello | world | "hello" | 'world' | 'hello' | "world" |
+-----------+-----------+-------------+-------------+---------------+---------------+

Boolean Data Types
==================
Expand Down

0 comments on commit b69958a

Please sign in to comment.