use Function;
use crateExpression;
/// A represention of the `LOWER` function in the database.
/// Converts the result of the expression into lowercase string.
///
/// ```rust
/// # use sqlint::{ast::*, visitor::{Visitor, Sqlite}};
/// # fn main() -> Result<(), sqlint::error::Error> {
/// let query = Select::from_table("users").value(lower(Column::from("name")));
/// let (sql, _) = Sqlite::build(query)?;
/// assert_eq!("SELECT LOWER(`name`) FROM `users`", sql);
/// # Ok(())
/// # }
/// ```