Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
Impala 4.4.1
-
None
-
ghx-label-10
Description
impala-shell interprets special control character escape sequences like \n, \t.
Example:
SELECT '\n\n\n\n123';
Output:
+---------------+
| '\n\n\n\n123' |
+---------------+
| |
| |
| |
| |
| 123 |
+---------------+
Expected output:
+---------------+
| '\n\n\n\n123' |
+---------------+
| \n\n\n\n123 |
+---------------+