You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hawq.apache.org by "Goden Yao (JIRA)" <ji...@apache.org> on 2016/07/14 18:27:20 UTC

[jira] [Updated] (HAWQ-46) Change data type for Metadata Versioning versions from int64 to uint64

     [ https://issues.apache.org/jira/browse/HAWQ-46?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Goden Yao updated HAWQ-46:
--------------------------
    Fix Version/s: 2.0.0.0-incubating

> Change data type for Metadata Versioning versions from int64 to uint64
> ----------------------------------------------------------------------
>
>                 Key: HAWQ-46
>                 URL: https://issues.apache.org/jira/browse/HAWQ-46
>             Project: Apache HAWQ
>          Issue Type: Improvement
>          Components: Metadata Versioning
>            Reporter: George Caragea
>            Assignee: George Caragea
>              Labels: closed-pr
>             Fix For: 2.0.0.0-incubating
>
>
> Metadata versioning versions are uint64 currently. But at some point during version generation, we use an atomic operation that returns int64 and then cast it to unsigned:
> {code}
> uint64
> mdver_next_global_version()
> {
> 	return (uint64) gp_atomic_add_64(mdver_global_version_counter, 1);
> }
> {code}
> Change all places that handle versions to use unsigned 64 bit integer values. 



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)