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
https://github.com/project-tsurugi/jogasaki/blob/master/src/jogasaki/api/kvsservice/serializer.cpp#L60-L62 で判定して、err_resource_limit_reachedを返している。 これはセッション数など、OSリソースが足りなくなった場合のエラーであり、文字列長制限エラーとしては不適切。
err_resource_limit_reached
SQLクライアントではVALUE_TOO_LONG_EXCEPTIONが返るらしい。 これと同じでなくてもかまわない。 現在、KVSのエラーコードには文字列長制限エラーにふさわしい値がなさそうなので、追加すべき。 https://github.com/project-tsurugi/jogasaki/blob/master/include/jogasaki/api/kvsservice/status.h
VALUE_TOO_LONG_EXCEPTION
The text was updated successfully, but these errors were encountered:
kookubo
No branches or pull requests
https://github.com/project-tsurugi/jogasaki/blob/master/src/jogasaki/api/kvsservice/serializer.cpp#L60-L62
で判定して、
err_resource_limit_reached
を返している。これはセッション数など、OSリソースが足りなくなった場合のエラーであり、文字列長制限エラーとしては不適切。
SQLクライアントでは
VALUE_TOO_LONG_EXCEPTION
が返るらしい。これと同じでなくてもかまわない。
現在、KVSのエラーコードには文字列長制限エラーにふさわしい値がなさそうなので、追加すべき。
https://github.com/project-tsurugi/jogasaki/blob/master/include/jogasaki/api/kvsservice/status.h
The text was updated successfully, but these errors were encountered: