Kubo Takehiro
Kubo Takehiro
> Are my assumptions above correct? No. If your code don't use the parameter, it doesn't depend on whether the PLT entry is resolved or not.
Could you post sample code? I'm not familiar with C#.
I'm not sure but it may be fixed by inserting write barriers. (https://bugs.ruby-lang.org/projects/ruby-master/wiki/RGenGC) before https://github.com/kubo/ruby-oci8/commit/031cab52f95e9d3ea5229ed0e465c95a7e94dcaa: 1. Set `svcctx->executing_thread` with write barrier. `RB_OBJ_WRITE(parg->svcctx->base.self, &parg->svcctx->executing_thread, rb_thread_current())` in `oci8lib.c` 2. Enter a blocking...
> Is there a way to disable this feature? How about adding the following monkey patch after `require "oci8"`? ```ruby class OCI8 class Cursor private alias_method :define_one_column_orig, :define_one_column def define_one_column(pos,...
This is just a draft. It is a first step to learn the usage and find more usable methods. I may remove `OCI8::Xid` and `OCI8::TransHandle` later. Start a global transaction...
@emgosa See https://github.com/kubo/ruby-oci8/issues/237#issuecomment-929703989 and replace `/Users/mattgardner/.rbenv/versions/2.7.3/bin/ruby` with `/Users/joker/.rbenv/versions/2.5.3/bin/ruby` in the comment. I must write notice about M1 mac...
I guess that it works if both ruby and ruby-oci8 are all x64. Compile ruby and ruby-oci8 on intel mac and copies all files to m1 mac.
Could you check the environment variables in cron and console? I guess that some environment variables are missing in cron. In crontab: ```crontab minute hour * * * env |...
@aman29april Could you post the environment variables on a console where your job works fine? I guess that some environment variables are missing in the Kubernetes environment but exist in...
In general, this isn't a ruby-oci8 issue. The error was raised in the trigger `SYS.USER_LOGIN_MONITORING`. As far as I googled it, I cannot find such trigger. I guess that the...