Yasuo Honda

Results 167 comments of Yasuo Honda

This change has been included to Ubuntu 24.04 LTS https://discourse.ubuntu.com/t/ubuntu-24-04-lts-noble-numbat-release-notes/39890#tzdata-package-split-29

`options:` can be used for some database-specific options like `options: 'ENGINE=InnoDB DEFAULT CHARSET=utf8mb4'` for MySQL. PostgreSQL native partition is one of them, not everything. It eventually add the string specified...

Sorry for my late update. I still have some plan to support Oracle enhanced adapter compatible with Rails 7.1. That will take some more time.

This test passes at both Rails CI and my environment so it needs some more information. ```ruby $ ruby -v ruby 3.2.2 (2023-03-30 revision e51014f9c0) [x86_64-linux] $ bin/test test/engine/commands_test.rb:62 Run...

Looks like it reproduces using macOS Sonoma 14.2 (I'm running beta version of macOS) with Apple M1 Max chip. - Environment ``` % ruby -v ruby 3.2.2 (2023-03-30 revision e51014f9c0)...

While I understand it is important to avoid polluting pg_stat_statements, I am concerned about the potential unforeseen side effects of rewriting all 'in' clauses to 'any' for this purpose. This...

According to git bisect, this behavior changes since https://github.com/ruby/ruby/commit/de1a586ecc2ee7f465f0c0a69291054136a3a819 via https://github.com/ruby/ruby/pull/9926 cc @byroot as one of the author of this commit.

I want this pull request merged because this behavior gets error at Ruby 3.3.0dev since https://github.com/ruby/ruby/pull/7039 . Rails 7.0.z needs `blade` gem and the CI is failing. https://buildkite.com/rails/rails/builds/94669#0186dc1f-05f9-4363-b83c-95d392a7c5d9/3376-3379 Rails 7.0.z...

This issue still exists. - Another CI that was running out 30 min https://buildkite.com/rails/rails/builds/107264#018f7da2-875a-437c-aa9e-d8a3b114135e - Get SIGABRT as modified via https://github.com/rails/rails/pull/51038 https://buildkite.com/rails/rails/builds/107261#018f7d9c-3b15-4f7a-9f53-9dfaa6e38dfa/1182-1191

Here are the example of good and bad ones. - Good one ```ruby class Conversation < ActiveRecord::Base enum :status, [ :active, :archived ] end ``` - Bad one ```ruby class...