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

QueryException Incorrect decimal value for column 'balance' #348

Closed
iamroi opened this issue Aug 9, 2021 · 5 comments
Closed

QueryException Incorrect decimal value for column 'balance' #348

iamroi opened this issue Aug 9, 2021 · 5 comments
Assignees
Labels
no problem There is a description in the documentation. This is how it should work. question Further information is requested Stale

Comments

@iamroi
Copy link

iamroi commented Aug 9, 2021

Hi @rez1dent3 !

I ran into this weird issue when I was running my tests

I created a wallet with 6 decimal places

$user->createWallet([
    'name' => 'New Wallet',
    'slug' => 'my-wallet',
    'decimal_places' => 6,
]);

then when I tried to deposit 1000 like below with 6 extra zeros, // edited**

$wallet->deposit(1000000000);

I encountered this QueryException

  SQLSTATE[HY000]: General error: 1366 Incorrect decimal value: '1000000000.0000000000000000000000000000000000000000000000000000000000000000' for column 'balance' at row 1 (SQL: update `wallets` set `balance` = 1000000000.0000000000000000000000000000000000000000000000000000000000000000, `wallets`.`updated_at` = 2021-08-09 09:28:25 where `wallets`.`id` = 1)

Please let me know if I'm missing something on my end. Thanks!

@rez1dent3 rez1dent3 self-assigned this Aug 9, 2021
@rez1dent3 rez1dent3 added requires testing question Further information is requested labels Aug 9, 2021
@rez1dent3
Copy link
Member

rez1dent3 commented Aug 9, 2021

Hello. Added a test, I'm waiting for the result. I'll write tomorrow

https://github.com/bavix/laravel-wallet/blob/issue_348/tests/MultiWalletTest.php#L602

@rez1dent3
Copy link
Member

There is no problem or I didn’t find it. Look at the test, is it correct? #349

Github Actions:
https://github.com/bavix/laravel-wallet/actions/runs/1115372136

@rez1dent3 rez1dent3 added no problem There is a description in the documentation. This is how it should work. and removed requires testing labels Aug 10, 2021
@iamroi
Copy link
Author

iamroi commented Aug 10, 2021

Hi @rez1dent3 Thanks for that!

I just added a comment here https://github.com/bavix/laravel-wallet/pull/349/files#r685824436

I'm still able to replicate this weird issue on my system with the below config,

MySQL 5.7.32
PHP 8.0.3
Laravel 8

@iamroi
Copy link
Author

iamroi commented Aug 10, 2021

Hey @rez1dent3 after further playing around, I found that by changing the below in the wallet config everything works!

    'math' => [
        -'scale' => 64,
        +'scale' => 63,
    ],

I'm not sure why 64 didn't work with the BrickMath. Please let me know if you have any ideas and confirm if it is safe to leave it as 63 thanks!

@github-actions
Copy link

This issue is stale because it has been open 30 days with no activity.

@github-actions github-actions bot added the Stale label Sep 10, 2021
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Aug 5, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
no problem There is a description in the documentation. This is how it should work. question Further information is requested Stale
Projects
None yet
Development

No branches or pull requests

2 participants