Aggarwal-Raghav commented on code in PR #62: URL: https://github.com/apache/hive-site/pull/62#discussion_r2348877970
########## content/docs/latest/language/languagemanual-types.md: ########## @@ -19,33 +19,33 @@ For data types supported by HCatalog, see: ### Numeric Types -* [`TINYINT`](https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=82706456#LanguageManualTypes-tinyint) (1-byte signed integer, from `-128` to `127`) -* [`SMALLINT`](https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=82706456#LanguageManualTypes-smallint) (2-byte signed integer, from `-32,768` to `32,767`) +* [`TINYINT`](https://hive.apache.org/docs/latest/language/languagemanual-types#integral-types-tinyintsmallintintintegerbigint) (1-byte signed integer, from `-128` to `127`) +* [`SMALLINT`](https://hive.apache.org/docs/latest/language/languagemanual-types#integral-types-tinyintsmallintintintegerbigint) (2-byte signed integer, from `-32,768` to `32,767`) * ``` -[INT](https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=82706456#LanguageManualTypes-int)/INTEGER (4-byte signed integer, from -2,147,483,648 to 2,147,483,647) +[INT](https://hive.apache.org/docs/latest/language/languagemanual-types#integral-types-tinyintsmallintintintegerbigint)/INTEGER (4-byte signed integer, from -2,147,483,648 to 2,147,483,647) ``` -* [`BIGINT`](https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=82706456#LanguageManualTypes-bigint) (8-byte signed integer, from `-9,223,372,036,854,775,808` to `9,223,372,036,854,775,807`) +* [`BIGINT`](https://hive.apache.org/docs/latest/language/languagemanual-types#integral-types-tinyintsmallintintintegerbigint) (8-byte signed integer, from `-9,223,372,036,854,775,808` to `9,223,372,036,854,775,807`) * `FLOAT` (4-byte single precision floating point number) * `DOUBLE` (8-byte double precision floating point number) * ``` DOUBLE PRECISION (alias for DOUBLE, only available starting with Hive [2.2.0](https://issues.apache.org/jira/browse/HIVE-13556)) ``` -* [`DECIMAL`](https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=82706456#LanguageManualTypes-decimal) +* [`DECIMAL`](https://hive.apache.org/docs/latest/language/languagemanual-types#decimals) + Introduced in Hive [0.11.0](https://issues.apache.org/jira/browse/HIVE-2693) with a precision of 38 digits + Hive [0.13.0](https://issues.apache.org/jira/browse/HIVE-3976) introduced user-definable precision and scale * `NUMERIC` (same as `DECIMAL`, starting with [Hive 3.0.0](https://issues.apache.org/jira/browse/HIVE-16764)) ### Date/Time Types -* [`TIMESTAMP`](https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=82706456#LanguageManualTypes-timestamp) (Note: Only available starting with Hive [0.8.0](https://issues.apache.org/jira/browse/HIVE-2272)) -* [`DATE`](https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=82706456#LanguageManualTypes-date) (Note: Only available starting with Hive [0.12.0](https://issues.apache.org/jira/browse/HIVE-4055)) -* [`INTERVAL`](https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=82706456#LanguageManualTypes-Intervals) (Note: Only available starting with Hive [1.2.0](https://issues.apache.org/jira/browse/HIVE-9792)) +* [`TIMESTAMP`](https://hive.apache.org/docs/latest/language/languagemanual-types#timestamps) (Note: Only available starting with Hive [0.8.0](https://issues.apache.org/jira/browse/HIVE-2272)) +* [`DATE`](https://hive.apache.org/docs/latest/language/languagemanual-types#dates) (Note: Only available starting with Hive [0.12.0](https://issues.apache.org/jira/browse/HIVE-4055)) Review Comment: Ignore it. My bad. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
