[Feature Requests] Multiple character delimiter needs to be supported #200
Unanswered
liang8283
asked this question in
Ideas / Feature Requests
Replies: 1 comment
-
Hi @my-ship-it, how about this feature request for CloudberryDB? Furthermore, Should we create a missing feature list between HashData 3.x and CloudberryDB to ensure a seamless user experience during the migration from HashData 3.x to CloudberryDB? Just my opinion, FYI. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Description
In hashdata 3x, this feature has been implemented as following:
create a teset file.
cat 1.txt
aaa|@|bbb
create a table.
create table t1 (c1 text, c2 text);
create external table to specify multiple characters '|@|' as the delimeter.
CREATE EXTERNAL TABLE t1_ext (LIKE t1)
LOCATION ('gpfdist://192.168.177.161:8081/1.txt')
FORMAT 'CUSTOM' (FORMATTER=delimiter_in,entry_delim='|@|',line_delim=E'\n',null='',encoding='utf8');
Use case/motivation
No response
Related issues
No response
Are you willing to submit a PR?
Beta Was this translation helpful? Give feedback.
All reactions