We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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.
The text was updated successfully, but these errors were encountered:
zelima
No branches or pull requests
--> change to
ASNs are defined by https://tools.ietf.org/html/rfc6793 as 32 bit numbers. Let's stick with that definition pls.
The text was updated successfully, but these errors were encountered: