Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dim_asn -> ASNs are not bigints #104

Open
aaronkaplan opened this issue Mar 21, 2017 · 0 comments
Open

dim_asn -> ASNs are not bigints #104

aaronkaplan opened this issue Mar 21, 2017 · 0 comments
Assignees
Milestone

Comments

@aaronkaplan
Copy link

aaronkaplan commented Mar 21, 2017

prod=> \d dim_asn
    Table "public.dim_asn"
 Column  |  Type  | Modifiers
---------+--------+-----------
 number  | bigint | not null
 title   | text   |
 country | text   |
Indexes:
    "dim_asn_pkey" PRIMARY KEY, btree (number)
Foreign-key constraints:
    "fk_country_asn" FOREIGN KEY (country) REFERENCES dim_country(id)
Referenced by:
    TABLE "fact_count" CONSTRAINT "fk_count_asn" FOREIGN KEY (asn) REFERENCES dim_asn(number)

--> change to

prod=> \d dim_asn
    Table "public.dim_asn"
 Column  |  Type  | Modifiers
---------+--------+-----------
 number  | integer | not null
 title   | text   |
 country | varchar(2)   |
Indexes:
    "dim_asn_pkey" PRIMARY KEY, btree (number)
Foreign-key constraints:
    "fk_country_asn" FOREIGN KEY (country) REFERENCES dim_country(id)
Referenced by:
    TABLE "fact_count" CONSTRAINT "fk_count_asn" FOREIGN KEY (asn) REFERENCES dim_asn(number)

ASNs are defined by https://tools.ietf.org/html/rfc6793 as 32 bit numbers. Let's stick with that definition pls.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants