@@ -1031,11 +1031,11 @@ namespace SpacetimeDB
10311031 {
10321032 [DataMember (Name = " arg" )]
10331033 public TestA Arg ;
1034- [DataMember (Name = " arg2 " )]
1034+ [DataMember (Name = " arg_2 " )]
10351035 public TestB Arg2 ;
1036- [DataMember (Name = " arg3 " )]
1036+ [DataMember (Name = " arg_3 " )]
10371037 public NamespaceTestC Arg3 ;
1038- [DataMember (Name = " arg4 " )]
1038+ [DataMember (Name = " arg_4 " )]
10391039 public NamespaceTestF Arg4 ;
10401040
10411041 public Test(
@@ -1923,38 +1923,38 @@ namespace SpacetimeDB
19231923 {
19241924 protected override string RemoteTableName => "logged_out_player";
19251925
1926- public sealed class IdentityUniqueIndex : UniqueIndexBase <SpacetimeDB.Identity >
1926+ public sealed class LoggedOutPlayerIdentityIdxBtreeUniqueIndex : UniqueIndexBase <SpacetimeDB.Identity >
19271927 {
19281928 protected override SpacetimeDB .Identity GetKey (Player row ) => row .Identity ;
19291929
1930- public IdentityUniqueIndex (LoggedOutPlayerHandle table ) : base (table ) { }
1930+ public LoggedOutPlayerIdentityIdxBtreeUniqueIndex (LoggedOutPlayerHandle table ) : base (table ) { }
19311931 }
19321932
1933- public readonly IdentityUniqueIndex Identity ;
1933+ public readonly LoggedOutPlayerIdentityIdxBtreeUniqueIndex LoggedOutPlayerIdentityIdxBtree ;
19341934
1935- public sealed class NameUniqueIndex : UniqueIndexBase<string >
1935+ public sealed class LoggedOutPlayerNameIdxBtreeUniqueIndex : UniqueIndexBase<string >
19361936 {
19371937 protected override string GetKey (Player row ) => row .Name ;
19381938
1939- public NameUniqueIndex (LoggedOutPlayerHandle table ) : base (table ) { }
1939+ public LoggedOutPlayerNameIdxBtreeUniqueIndex (LoggedOutPlayerHandle table ) : base (table ) { }
19401940 }
19411941
1942- public readonly NameUniqueIndex Name ;
1942+ public readonly LoggedOutPlayerNameIdxBtreeUniqueIndex LoggedOutPlayerNameIdxBtree ;
19431943
1944- public sealed class PlayerIdUniqueIndex : UniqueIndexBase<ulong >
1944+ public sealed class LoggedOutPlayerPlayerIdIdxBtreeUniqueIndex : UniqueIndexBase<ulong >
19451945 {
19461946 protected override ulong GetKey (Player row ) => row .PlayerId ;
19471947
1948- public PlayerIdUniqueIndex (LoggedOutPlayerHandle table ) : base (table ) { }
1948+ public LoggedOutPlayerPlayerIdIdxBtreeUniqueIndex (LoggedOutPlayerHandle table ) : base (table ) { }
19491949 }
19501950
1951- public readonly PlayerIdUniqueIndex PlayerId ;
1951+ public readonly LoggedOutPlayerPlayerIdIdxBtreeUniqueIndex LoggedOutPlayerPlayerIdIdxBtree ;
19521952
19531953 internal LoggedOutPlayerHandle(DbConnection conn) : base(conn)
19541954 {
1955- Identity = new (this );
1956- Name = new (this );
1957- PlayerId = new (this );
1955+ LoggedOutPlayerIdentityIdxBtree = new (this );
1956+ LoggedOutPlayerNameIdxBtree = new (this );
1957+ LoggedOutPlayerPlayerIdIdxBtree = new (this );
19581958 }
19591959
19601960 protected override object GetPrimaryKey(Player row) => row.Identity;
@@ -2072,19 +2072,19 @@ namespace SpacetimeDB
20722072
20732073 public readonly AgeIndex Age ;
20742074
2075- public sealed class IdUniqueIndex : UniqueIndexBase <uint >
2075+ public sealed class PersonIdIdxBtreeUniqueIndex : UniqueIndexBase <uint >
20762076 {
20772077 protected override uint GetKey(Person row ) => row.Id;
20782078
2079- public IdUniqueIndex (PersonHandle table ) : base (table ) { }
2079+ public PersonIdIdxBtreeUniqueIndex (PersonHandle table ) : base (table ) { }
20802080 }
20812081
2082- public readonly IdUniqueIndex Id ;
2082+ public readonly PersonIdIdxBtreeUniqueIndex PersonIdIdxBtree ;
20832083
20842084 internal PersonHandle(DbConnection conn ) : base (conn )
20852085 {
20862086 Age = new (this );
2087- Id = new (this );
2087+ PersonIdIdxBtree = new (this );
20882088 }
20892089
20902090 protected override object GetPrimaryKey(Person row ) => row.Id;
@@ -2140,28 +2140,28 @@ namespace SpacetimeDB
21402140 {
21412141 protected override string RemoteTableName = > " pk_multi_identity" ;
21422142
2143- public sealed class IdUniqueIndex : UniqueIndexBase <uint >
2143+ public sealed class PkMultiIdentityIdIdxBtreeUniqueIndex : UniqueIndexBase <uint >
21442144 {
21452145 protected override uint GetKey(PkMultiIdentity row ) => row.Id;
21462146
2147- public IdUniqueIndex (PkMultiIdentityHandle table ) : base (table ) { }
2147+ public PkMultiIdentityIdIdxBtreeUniqueIndex (PkMultiIdentityHandle table ) : base (table ) { }
21482148 }
21492149
2150- public readonly IdUniqueIndex Id ;
2150+ public readonly PkMultiIdentityIdIdxBtreeUniqueIndex PkMultiIdentityIdIdxBtree ;
21512151
2152- public sealed class OtherUniqueIndex : UniqueIndexBase <uint >
2152+ public sealed class PkMultiIdentityOtherIdxBtreeUniqueIndex : UniqueIndexBase <uint >
21532153 {
21542154 protected override uint GetKey(PkMultiIdentity row ) => row.Other;
21552155
2156- public OtherUniqueIndex (PkMultiIdentityHandle table ) : base (table ) { }
2156+ public PkMultiIdentityOtherIdxBtreeUniqueIndex (PkMultiIdentityHandle table ) : base (table ) { }
21572157 }
21582158
2159- public readonly OtherUniqueIndex Other ;
2159+ public readonly PkMultiIdentityOtherIdxBtreeUniqueIndex PkMultiIdentityOtherIdxBtree ;
21602160
21612161 internal PkMultiIdentityHandle(DbConnection conn ) : base (conn )
21622162 {
2163- Id = new (this );
2164- Other = new (this );
2163+ PkMultiIdentityIdIdxBtree = new (this );
2164+ PkMultiIdentityOtherIdxBtree = new (this );
21652165 }
21662166
21672167 protected override object GetPrimaryKey(PkMultiIdentity row ) => row.Id;
@@ -2215,38 +2215,38 @@ namespace SpacetimeDB
22152215 {
22162216 protected override string RemoteTableName = > " player" ;
22172217
2218- public sealed class IdentityUniqueIndex : UniqueIndexBase <SpacetimeDB .Identity >
2218+ public sealed class PlayerIdentityIdxBtreeUniqueIndex : UniqueIndexBase <SpacetimeDB .Identity >
22192219 {
22202220 protected override SpacetimeDB .Identity GetKey(Player row ) => row.Identity;
22212221
2222- public IdentityUniqueIndex (PlayerHandle table ) : base (table ) { }
2222+ public PlayerIdentityIdxBtreeUniqueIndex (PlayerHandle table ) : base (table ) { }
22232223 }
22242224
2225- public readonly IdentityUniqueIndex Identity ;
2225+ public readonly PlayerIdentityIdxBtreeUniqueIndex PlayerIdentityIdxBtree ;
22262226
2227- public sealed class NameUniqueIndex : UniqueIndexBase <string >
2227+ public sealed class PlayerNameIdxBtreeUniqueIndex : UniqueIndexBase <string >
22282228 {
22292229 protected override string GetKey(Player row ) => row.Name;
22302230
2231- public NameUniqueIndex (PlayerHandle table ) : base (table ) { }
2231+ public PlayerNameIdxBtreeUniqueIndex (PlayerHandle table ) : base (table ) { }
22322232 }
22332233
2234- public readonly NameUniqueIndex Name ;
2234+ public readonly PlayerNameIdxBtreeUniqueIndex PlayerNameIdxBtree ;
22352235
2236- public sealed class PlayerIdUniqueIndex : UniqueIndexBase <ulong >
2236+ public sealed class PlayerPlayerIdIdxBtreeUniqueIndex : UniqueIndexBase <ulong >
22372237 {
22382238 protected override ulong GetKey(Player row ) => row.PlayerId;
22392239
2240- public PlayerIdUniqueIndex (PlayerHandle table ) : base (table ) { }
2240+ public PlayerPlayerIdIdxBtreeUniqueIndex (PlayerHandle table ) : base (table ) { }
22412241 }
22422242
2243- public readonly PlayerIdUniqueIndex PlayerId ;
2243+ public readonly PlayerPlayerIdIdxBtreeUniqueIndex PlayerPlayerIdIdxBtree ;
22442244
22452245 internal PlayerHandle(DbConnection conn ) : base (conn )
22462246 {
2247- Identity = new (this );
2248- Name = new (this );
2249- PlayerId = new (this );
2247+ PlayerIdentityIdxBtree = new (this );
2248+ PlayerNameIdxBtree = new (this );
2249+ PlayerPlayerIdIdxBtree = new (this );
22502250 }
22512251
22522252 protected override object GetPrimaryKey(Player row ) => row.Identity;
@@ -2414,18 +2414,18 @@ namespace SpacetimeDB
24142414 {
24152415 protected override string RemoteTableName = > " repeating_test_arg" ;
24162416
2417- public sealed class ScheduledIdUniqueIndex : UniqueIndexBase <ulong >
2417+ public sealed class RepeatingTestArgScheduledIdIdxBtreeUniqueIndex : UniqueIndexBase <ulong >
24182418 {
24192419 protected override ulong GetKey(RepeatingTestArg row ) => row.ScheduledId;
24202420
2421- public ScheduledIdUniqueIndex (RepeatingTestArgHandle table ) : base (table ) { }
2421+ public RepeatingTestArgScheduledIdIdxBtreeUniqueIndex (RepeatingTestArgHandle table ) : base (table ) { }
24222422 }
24232423
2424- public readonly ScheduledIdUniqueIndex ScheduledId ;
2424+ public readonly RepeatingTestArgScheduledIdIdxBtreeUniqueIndex RepeatingTestArgScheduledIdIdxBtree ;
24252425
24262426 internal RepeatingTestArgHandle(DbConnection conn ) : base (conn )
24272427 {
2428- ScheduledId = new (this );
2428+ RepeatingTestArgScheduledIdIdxBtree = new (this );
24292429 }
24302430
24312431 protected override object GetPrimaryKey(RepeatingTestArg row ) => row.ScheduledId;
@@ -2636,28 +2636,28 @@ namespace SpacetimeDB
26362636 {
26372637 protected override string RemoteTableName = > " test_e" ;
26382638
2639- public sealed class IdUniqueIndex : UniqueIndexBase <ulong >
2639+ public sealed class TestEIdIdxBtreeUniqueIndex : UniqueIndexBase <ulong >
26402640 {
26412641 protected override ulong GetKey(TestE row ) => row.Id;
26422642
2643- public IdUniqueIndex (TestEHandle table ) : base (table ) { }
2643+ public TestEIdIdxBtreeUniqueIndex (TestEHandle table ) : base (table ) { }
26442644 }
26452645
2646- public readonly IdUniqueIndex Id ;
2646+ public readonly TestEIdIdxBtreeUniqueIndex TestEIdIdxBtree ;
26472647
2648- public sealed class NameIndex : BTreeIndexBase <string >
2648+ public sealed class TestENameIdxBtreeIndex : BTreeIndexBase <string >
26492649 {
26502650 protected override string GetKey(TestE row ) => row.Name;
26512651
2652- public NameIndex (TestEHandle table ) : base (table ) { }
2652+ public TestENameIdxBtreeIndex (TestEHandle table ) : base (table ) { }
26532653 }
26542654
2655- public readonly NameIndex Name ;
2655+ public readonly TestENameIdxBtreeIndex TestENameIdxBtree ;
26562656
26572657 internal TestEHandle(DbConnection conn ) : base (conn )
26582658 {
2659- Id = new (this );
2660- Name = new (this );
2659+ TestEIdIdxBtree = new (this );
2660+ TestENameIdxBtree = new (this );
26612661 }
26622662
26632663 protected override object GetPrimaryKey(TestE row ) => row.Id;
0 commit comments