Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename __tname__ to __tname #82

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ private TypeDeserializerFactory CreateDefaultFactory()
return (ref ObjectEnumerator enumerator) =>
{
// introspect the type name
if (!enumerator.Next(out var name, out var value) || name != "__tname__")
if (!enumerator.Next(out var name, out var value) || name != "__tname")
throw new ConfigurationException(
"Type introspection is required for abstract types, this is a bug.");

Expand Down
2 changes: 1 addition & 1 deletion tests/EdgeDB.Tests.Benchmarks/TypeBuilderBenchmarks.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ static TypeBuilderBenchmarks()

Codec = new ObjectCodec(in Guid.Empty,
new ICodec[] {new TextCodec(), new UUIDCodec(), new UUIDCodec(), new TextCodec(), new TextCodec()},
new[] {"__tname__", "__tid__", "id", "name", "email"});
new[] {"__tname", "__tid__", "id", "name", "email"});
Codec = Codec.GetOrCreateTypeCodec(typeof(Person));
}

Expand Down