Skip to content

Commit a69fd63

Browse files
committed
chore(sqlx-sqlite): unify SQL dialect in annotation comments
1 parent c7deb6e commit a69fd63

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

sqlx-sqlite/src/migrate.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ CREATE TABLE IF NOT EXISTS {table_name} (
180180
// this small risk since this value is not super important.
181181
let elapsed = start.elapsed();
182182

183-
// language=SQL
183+
// language=SQLite
184184
#[allow(clippy::cast_possible_truncation)]
185185
let _ = query(AssertSqlSafe(format!(
186186
r#"
@@ -233,7 +233,7 @@ async fn execute_migration(
233233
.await
234234
.map_err(|e| MigrateError::ExecuteMigration(e, migration.version))?;
235235

236-
// language=SQL
236+
// language=SQLite
237237
let _ = query(AssertSqlSafe(format!(
238238
r#"
239239
INSERT INTO {table_name} ( version, description, success, checksum, execution_time )
@@ -259,7 +259,7 @@ async fn revert_migration(
259259
.await
260260
.map_err(|e| MigrateError::ExecuteMigration(e, migration.version))?;
261261

262-
// language=SQL
262+
// language=SQLite
263263
let _ = query(AssertSqlSafe(format!(
264264
r#"
265265
DELETE FROM {table_name}

0 commit comments

Comments
 (0)