Details
-
New Feature
-
Status: Open
-
Major
-
Resolution: Unresolved
-
0.3.0
-
None
-
None
Description
A blob table has a single column of type string. We put all data from the row into that column.
At present we are able to create blob table like this:
CREATE TABLE blobTable1 (blob STRING) ROW FORMAT SERDE 'org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe' WITH SERDEPROPERTIES ( 'serialization.last.column.takes.rest'='true' ) STORED AS TEXTFILE; CREATE TABLE blobTable1 (blob STRING) ROW FORMAT SERDE 'org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe' WITH SERDEPROPERTIES ( 'serialization.last.column.takes.rest'='true' ) STORED AS SEQUENCEFILE;
We should add a simpler way to create such a table, since it's pretty popular.
Attachments
Issue Links
- blocks
-
HIVE-411 Interaction of AS clause (from a TRANSFORM-USING-AS) with non-column formatted output
- Open