-
-
Notifications
You must be signed in to change notification settings - Fork 220
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
A product id can overflow an int32 #560
Comments
Hi, this is done in version 0.8.3. |
@XiaoFaye Varius For example |
Ops, forgot to change the parameter, will do it in the next version. |
@XiaoFaye The Id property should be long or ulong (64 bit) because overflow still occurs, for example when I am downloading an order with ID = 61000150083 |
Hi,
A post id on WordPress is defined as: bigint(20) unsigned
Which can overflow an int32, which is the type used by WooCommerce.NET for product id
It could be possible to change the type of the product id to fit the max size of a WordPress post id?
The text was updated successfully, but these errors were encountered: