Skip to content

Instantly share code, notes, and snippets.

@vatsan
Last active August 29, 2015 14:10
Show Gist options
  • Save vatsan/3e84aa6cceff07bbbc50 to your computer and use it in GitHub Desktop.
Save vatsan/3e84aa6cceff07bbbc50 to your computer and use it in GitHub Desktop.
-- Define a type to hold [tweet_id, token_index, token, tag] items
DROP TYPE IF EXISTS token_tag;
CREATE TYPE token_tag
AS
(
indx int,
token text,
tag text
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment