liquibase defaultValue 与 defaultValueNumeric
谁能告诉我在变更集中指定 defaultValue="0" 与 defaultValueNumeric="0" 之间的区别吗?它适用于 bigint 列。
http://www.liquibase.org/manual/add_default_value 这里并没有详细讨论。
Can anyone tell me the difference between specifying a defaultValue="0" vs a defaultValueNumeric="0" in a changeset? It's for a bigint column.
http://www.liquibase.org/manual/add_default_value doesn't really go into detail here.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不同之处在于 defaultValue 在生成的 SQL 中将值放在引号内。许多数据库会将插入“42”解释为数字 42,但有些数据库会失败。 defaultValueNumeric 告诉 liquibase 它是一个数字,因此不会被引用,并且适用于所有数据库类型。
The difference is that defaultValue puts quotes around the value in the resulting SQL. Many database will interpret inserting '42' into a numeric field as the number 42, but some fail. defaultValueNumeric tells liquibase it is a number and therefore will not be quoted and will work on all database types.