Skip to content

Commit 07b686d

Browse files
nicktobeyjycor
andauthored
Update sql/sqlfmt.go
Co-authored-by: James Cor <[email protected]>
1 parent b0899a9 commit 07b686d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/sqlfmt.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ func GenerateCreateTablePrimaryKeyDefinition(pkCols []string) string {
102102

103103
// GenerateCreateTableIndexDefinition returns index definition string for 'CREATE TABLE' statement
104104
// for given index. This part comes after primary key definition if there is any.
105-
func GenerateCreateTableIndexDefinition(isUnique, isSpatial, isFullText bool, isVector bool, indexID string, indexCols []string, comment string) string {
105+
func GenerateCreateTableIndexDefinition(isUnique, isSpatial, isFullText, isVector bool, indexID string, indexCols []string, comment string) string {
106106
unique := ""
107107
if isUnique {
108108
unique = "UNIQUE "

0 commit comments

Comments
 (0)