lib/sequel/extensions/columns_introspection.rb in sequel-4.7.0 vs lib/sequel/extensions/columns_introspection.rb in sequel-4.8.0
- old
+ new
@@ -69,10 +69,10 @@
c.value.to_sym
when SQL::QualifiedIdentifier
col = c.column
col.is_a?(SQL::Identifier) ? col.value.to_sym : col.to_sym
when SQL::AliasedExpression
- a = c.aliaz
+ a = c.alias
a.is_a?(SQL::Identifier) ? a.value.to_sym : a.to_sym
end
end
end