Egres
Egres
In my case, I resolved it by replacing .from("(#{left_query.query.to_sql} UNION ALL #{right_query.query.to_sql})") with .from(Arel::Nodes::UnionAll.new(left_query.query.arel, right_query.query.arel)) I imagine that Arel do correctly load the schema found some nice examples at https://martinskruze.com/does_arel_work_in_rails_7...
I use "dblink" for many databases and I'm trying to find a workaround. Perhaps you could share your way to workaround this problem?
would be nice to have a new release with @schlumpfit proposal. with ruby 3.0.4 this problem is present in multiples applications that are using yaml aliases
@e, Already tried, ``` wdm_utils_full_pathname(const LPWSTR path) { WCHAR maxed_path[WDM_MAX_WCHAR_LONG_PATH]; LPWSTR full_path; size_t full_path_len; BOOL is_directory; WDM_DEBUG("- SK x1 -"); if ( GetFullPathNameW(path, WDM_MAX_WCHAR_LONG_PATH, maxed_path, NULL) == 0 ) {...
@e2 I modified wdm.h but did not find wdm makefile... the result of gdb is ``` D:\Dvlt\ruby\projects\_tmp\listen>gdb --args ruby.exe code.rb l GNU gdb (GDB) 7.3 Copyright (C) 2011 Free Software...
@e2, tried with yous advices. in the makefile: ``` optflags = -O3 -fno-omit-frame-pointer debugflags = -ggdb ``` if I use -O0 I have nothing in gdb result is: ``` D:\Dvlt\ruby\projects\_tmp\listen>gdb...
I tried with Netbeans on windows, but it is not consistent. Most of the time it fails, but not all the time! So I think it's a memory problem. We...
+1 Found it try the following code. i"s all about |path| variable that is passed to the block. It allow switching to the correct context Hope this help !! Cheers...
I'm using the related project webpacker-react and tried it on a test project on rails 7 with esbuild (jsbundling-rails). apart adding lodash in package.json it work out the box. see...
@navidemad No, I dropped webpacker in favor of esbuild, but webpacker-react don't depend on webpacker. The name is a little misleading. this gem and webpacker-react resolve the same problem in...