Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
janpio committed May 23, 2024
1 parent 84e63ea commit d462110
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion schema-engine/sql-schema-describer/src/mssql.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ static DEFAULT_DB_GEN: Lazy<Regex> = Lazy::new(|| Regex::new(r"\((.*)\)").unwrap
/// ```ignore
/// CREATE DEFAULT catcat AS 'musti';
/// ```
static DEFAULT_SHARED_CONSTRAINT: Lazy<Regex> = Lazy::new(|| Regex::new(r"^CREATE DEFAULT (.*)").unwrap());
static DEFAULT_SHARED_CONSTRAINT: Lazy<Regex> = Lazy::new(|| Regex::new(r"CREATE DEFAULT (.*)").unwrap());

pub struct SqlSchemaDescriber<'a> {
conn: &'a dyn Queryable,
Expand Down

0 comments on commit d462110

Please sign in to comment.