Skip to content

Commit

Permalink
Redshift: remove event_vendor and ue_name and rename ue_properties to…
Browse files Browse the repository at this point in the history
… unstruct_event (#834)
  • Loading branch information
fblundun committed Jun 25, 2014
1 parent 3e27943 commit 9d0ee31
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions 4-storage/redshift-storage/sql/atomic-def.sql
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ CREATE TABLE atomic.events (
dvce_tstamp timestamp,
-- Event
event varchar(128) encode text255,
event_vendor varchar(128) encode text32k, -- Removed not null constraint in 0.3.0
-- Removed event_vendor in 0.4.0
event_id char(36) not null unique, -- Changed from varchar(38) in 0.3.0
txn_id int,
-- Namespacing and versioning
Expand Down Expand Up @@ -89,8 +89,8 @@ CREATE TABLE atomic.events (
se_property varchar(255) encode text32k,
se_value double precision,
-- Custom unstructured event
ue_name varchar(255) encode text255, -- Added in 0.3.0
ue_properties varchar(10000) encode raw, -- Added in 0.3.0
-- Removed ue_name in 0.4.0
unstruct_event varchar(10000) encode raw, -- Renamed ue_properties to unstruct_event in 0.4.0
-- Ecommerce
tr_orderid varchar(255) encode raw,
tr_affiliation varchar(255) encode text255,
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Version 0.9.X (2014-XX-XX)
Scala Common Enrich: stored etl_tstamp in new field in CanonicalOutput (#818)
Redshift: bumped table-def to 0.4.0
Redshift: added etl_tstamp to atomic.events (#819)
Redshift: removed event_vendor and ue_name and renamed ue_properties to unstruct_event (#834)
Postgres: bumped table-def to 0.3.0
Postgres: added etl_tstamp to atomic.events (#820)

Expand Down

0 comments on commit 9d0ee31

Please sign in to comment.