- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将我的代码从 ActiveRecord 3 升级到 ActiveRecord 4,我相信我在 ActiveRecord + SQLite3 的 bool 查询支持中遇到了错误/回归。
这是运行 ActiveRecord 4.0.2 的 IRB session 的输出,其中 SQLite3 是数据库后端:
2.0.0p353 :040 > StoreItem.where(item_class: 1, enabled: 1).order(item_order: :desc).count
=> 4
2.0.0p353 :041 > StoreItem.where(item_class: 1, enabled: true).order(item_order: :desc).count
=> 0
作为比较点,当 Mysql 5.5 是数据库后端时,这里是相同的输出:
2.0.0p353 :005 > StoreItem.where(item_class: 1, enabled: 1).order(item_order: :desc).count
=> 4
2.0.0p353 :006 > StoreItem.where(item_class: 1, enabled: true).order(item_order: :desc).count
=> 4
现在,让我们看看使用 AR 3.2.14 运行时会发生什么:
SQLite3:
2.0.0p353 :005 > StoreItem.where(item_class: 1, enabled: 1).order(item_order: :desc).count
=> 0
2.0.0p353 :006 > StoreItem.where(item_class: 1, enabled: true).order(item_order: :desc).count
=> 4
MySQL 5.5:
2.0.0p353 :001 > StoreItem.where(item_class: 1, enabled: 1).order(item_order: :desc).count
=> 4
2.0.0p353 :002 > StoreItem.where(item_class: 1, enabled: true).order(item_order: :desc).count
=> 4
如您所见,当出现 bool 查询时,ActiveRecord 3.2.14 和 4.0.2 在 SQLite3 中做完全相反的事情。
我刚刚检查了实际生成的 SQL,它是相同的。第一个查询如下所示:
SELECT COUNT(*) FROM "store_items" WHERE "store_items"."item_class" = 1 AND "store_items"."enabled" = 1
第二个看起来像这样:
SELECT COUNT(*) FROM "store_items" WHERE "store_items"."item_class" = 1 AND "store_items"."enabled" = 't'
因此,也许 SQLite3 从 1.3.5 到 1.3.8 在处理 bool 列值方面发生了变化?
这是一个已知的错误吗?有人可以评论原因吗?
最佳答案
我调试了 ActiveRecord 3.2.14 和 4.0.2 的核心。这是从头到尾的错误:
SQLite 允许您插入任意字符串/数字作为 bool 列的列值。因此,您可以为 bool 列值插入 1 或“t”。
ActiveRecord 在与 SQLite 交互时将 bool 值映射到字符串类型 't' 或 'f',而不是 1 或 0。该决定背后的原因可能源于 Postgres,但目前是这样。
ActiveRecord在3.2.14第一次创建记录时,at line 365 in persistence.rb ,它创建所有模型字段的映射并插入所有字段,无论它们是否已更改。这是创建方法:
def create
attributes_values = arel_attributes_values(!id.nil?)
new_id = self.class.unscoped.insert attributes_values
self.id ||= new_id if self.class.primary_key
IdentityMap.add(self) if IdentityMap.enabled?
@new_record = false
id
end
这会导致 ActiveRecord 生成如下插入语句(注意 enabled 的存在,我们的 bool 列):
INSERT INTO "store_items" ("created_at", "enabled", "other_columns....") VALUES (?, ?, ?) [["created_at", 2014-01-11 21:47:24 UTC], ["enabled", true], ["other_colummns", ...]]
在 ActiveRecord 4.0.2 中,文件 dirty.rb, line 78 , 现在调用 persistence.rb (at line 507) 的 create_record 方法.创建记录如下所示:
def create_record(attribute_names = @attributes.keys)
attributes_values = arel_attributes_with_values_for_create(attribute_names)
new_id = self.class.unscoped.insert attributes_values
self.id ||= new_id if self.class.primary_key
@new_record = false
id
end
因为 create_record 现在接受一个仅列出那些已更改的列的参数,所以它生成一个插入语句,该语句不包括其默认值与您正在插入的列相匹配的列。因此,使用与默认值匹配的 bool 值的插入语句将如下所示:
INSERT INTO "store_items" ("created_at", "other_columns....") VALUES (?, ?, ?) [["created_at", 2014-01-11 21:47:24 UTC], ["other_colummns", ...]]
请注意,缺少 bool 列“已启用”,因为在这种情况下,我们的默认值 true/1 与我们第一次创建记录时插入的值匹配。
因为启用不是由 ActiveRecord 生成的插入语句指定的,SQLite 给它的值是 1,而不是 't' 的值,这是 ActiveRecord 3.1.14 过去给它的值。
最终,要解决此错误,请不要在 bool 列上包含默认值或确保将其更改为非默认值以强制 ActiveRecord 实际将其设置为 't' 或 'f ' 创造值(value)。
因此,改变这个:
class CreateStoreItems < ActiveRecord::Migration
def change
create_table :store_items do |t|
t.boolean :enabled, :null => false, :default => 1
end
end
end
对此
class CreateStoreItems < ActiveRecord::Migration
def change
create_table :store_items do |t|
t.boolean :enabled, :null => false
end
end
end
或者,如果您“旋转” bool 值而不是依赖默认值,您也可以更正错误。
关于mysql - ActiveRecord 4 + SQLite3 bool 查询支持中的回归?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21066345/
我有一个带有列的表提供者 implied(tiny int)(something like nullable bool) provi
我正在阅读 VideoFileWriter来自 AForge.Video.FFMPEG 的类(class)通过 ILSPY 组装(我很想看看特定方法是如何工作的)并发现了这个: public bool
这是我的完整代码... import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import
我有一个输入 list类型 [Maybe SomeType]和一个谓词 p类型 SomeType -> Bool ,我想回答这个问题“谓词 p 是否适用于所有碰巧在输入中的 SomeType ?”。
使用 !!x 有什么区别吗?对比(bool)x ? 假设__STDC_VERSION__ >= 199901L和 #include 他们都保证结果是0吗?或 1 ,并且无论 x 的大小和值如何,都不
我正在编写一些 C++ 代码,我想调用两个函数(checkXDirty 和 checkYDirty),并返回 true如果任一返回 true。即使一个返回 true 我也需要评估两者,所以我的第一个想
我注意到 bool在 QtCreator 中以不同于其他类型的颜色突出显示: 只有在包含某些 header 时才会发生这种情况,最终我将其追踪到 . QtCreator 的代码检查器似乎无法手动跟踪
有一个函数: func (first: Int) -> Int -> Bool -> String { return ? } 返回值怎么写?我对上面 func 的返回类型感到很困惑。 最
训练神经网络学习“异或” 我正在尝试使用“批量归一化”,我创建了一个批量归一化层函数“batch_norm1”。 import tensorflow as tf import nump
我已经创建了任务函数来验证我的 json 文件。一切正常,直到我没有使用结果。当我试图从 async task function 获得结果时它显示错误为 Cannot implicitly conve
我有一个函数 func login (parameters: [(String, Any)], completion: @escaping (Bool) -> Vo
我正在处理最近从 X/Motif 转移到 Qt 的 C++ 代码库。我正在尝试编写一个 Perl 脚本,它将用 bool 替换所有出现的 Boolean(来自 X)。该脚本只是做了一个简单的替换。 s
嗨,我正尝试创建一个Visiblity小部件,如果用户在Firebase数据库阵列上,该小部件将显示。看起来像这样(成员数组): 如您所见,我创建了一个StreamBuilder,如果当前用户的用户名
我创建了如下的rest api方法, Future activateAccount(int id, int code) async{ final body = {"code": '$c
在我的Flutter应用中,我有一个返回Future的函数,但我想将结果作为Stream。这是函数: Future isGpsOn() async { if (await Geolocat
我可以看到 BOOLEAN 覆盖了 __visit_name__ class BOOLEAN(Boolean): __visit_name__ = 'BOOLEAN' 控制调度员选择的访问者方
考虑以下代码: bool x; bool? y = null; x = y?? true; 将 bool? 分配给 bool 是一个编译时错误,但上面的代码在编译和运行时都成功了。为什么?尽管第三条语
我正在重写一些 Javascript 代码以在 Excel VBA 中工作。由于在这个网站上搜索,我已经设法翻译了几乎所有的 Javascript 代码!但是,有些代码我无法准确理解它在做什么。这是一
我想拍一张bool来自Vec并在 if 语句中进行比较。如何解决以下错误? | 7 | if cell { | ^^^^ expected
我在我的应用程序崩溃跟踪工具中发现了一些崩溃。基本上我有一个 tabBarController,其中一个选项卡有一个嵌入式 UIWebView,另一个选项卡有一个带有 UITableView 的 Co
我是一名优秀的程序员,十分优秀!