DuckDB, Postgres, SQLite: NOT NULL and NOTNULL expressions

This commit is contained in:
Ryan Schneider 2025-07-05 15:28:20 -07:00
parent ed8757f2f0
commit d6f51a13a8
9 changed files with 192 additions and 0 deletions

View file

@ -262,4 +262,8 @@ impl Dialect for PostgreSqlDialect {
fn supports_alter_column_type_using(&self) -> bool {
true
}
fn supports_notnull(&self) -> bool {
true
}
}