Skip to content

Commit 415cea8

Browse files
Update create-queues-powershell snippet to create nonclustered index (#7189)
1 parent 03519b3 commit 415cea8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Snippets/SqlTransport/SqlTransport_All/Operations/QueueCreation/QueueCreation.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ function CreateQueue {
107107
[Body] [varbinary](max),
108108
[RowVersion] [bigint] identity(1,1) not null
109109
);
110-
create clustered index [Index_RowVersion] on [{0}].[{1}]
110+
create nonclustered index [Index_RowVersion] on [{0}].[{1}]
111111
(
112112
[RowVersion]
113113
)

0 commit comments

Comments
 (0)