Skip to content

Commit

Permalink
gofmt
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Vaillancourt <tim@timvaillancourt.com>
  • Loading branch information
timvaillancourt committed Oct 29, 2024
1 parent b7b4185 commit 836e60d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions go/vt/external/golib/sqlutils/sqlite_dialect.go
Original file line number Diff line number Diff line change
Expand Up @@ -122,10 +122,10 @@ func ToSqlite3Insert(statement string) string {

// ToSqlite3Dialect converts a statement to sqlite3 dialect. The statement
// is checked in this order:
// 1. If an insert/replace, convert with ToSqlite3Insert.
// 2. If a create table, convert with IsCreateTable.
// 3. If an alter table, convert with IsAlterTable.
// 4. As fallback, return the statement with sqlite3GeneralConversions applied.
// 1. If an insert/replace, convert with ToSqlite3Insert.
// 2. If a create table, convert with IsCreateTable.
// 3. If an alter table, convert with IsAlterTable.
// 4. As fallback, return the statement with sqlite3GeneralConversions applied.
func ToSqlite3Dialect(statement string) (translated string) {
if IsInsert(statement) {
return ToSqlite3Insert(statement)
Expand Down

0 comments on commit 836e60d

Please sign in to comment.