1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

MySQL2::Error: FUNCTIONになった話

Posted at

herokuにデプロイしていたオリジナルWEBアプリを
AWSにデプロイしようと奮闘している中で発生したエラー。

ActiveRecord::StatementInvalid in Home#feel
Mysql2::Error: FUNCTION ****_development.RANDOM does not exist: SELECT

登録したイベントの一覧表示ページで発生。
困ったな。。。と思いつつ、エラーコードを観察すると、
MySQLの文言でRANDOMがどうとか言っている。

基準を満たすイベントの中からランダムで6つ取得し表示する。
という記述をしていてその時に"RANDOM()"を使っていたのだが、
どうやらこれが要因だった模様。

参考
https://qiita.com/dunkelrots/items/7dbde92ab13f388e0dc1

MySQLではRANDOM()ではなく rand()で記述するのが正しいらしい。
今回herokuからAWSに変更する上でデータベースもmySQLに変更していたので
起きたエラーでした。

というかデータ取得時に使っている関数に”DB依存のものがある。”という事自体が
新しい発見だった。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?