We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
byName
subgraph_domains
1 parent eff25f9 commit 12f279dCopy full SHA for 12f279d
2 files changed
.changeset/cute-rooms-tell.md
@@ -0,0 +1,5 @@
1
+---
2
+"@ensnode/ensdb-sdk": patch
3
4
+
5
+Temporarily removed the `byName` index on `subgraph_domains` table in ENSDb.
packages/ensdb-sdk/src/ensindexer-abstract/subgraph.schema.ts
@@ -93,7 +93,9 @@ export const subgraph_domain = onchainTable(
93
expiryDate: t.bigint(),
94
}),
95
(t) => ({
96
- byName: index().on(t.name),
+ // Temporarily disable the `byName` index to avoid index creation issues.
97
+ // For more details, see: https://github.com/namehash/ensnode/issues/1819
98
+ // byName: index().on(t.name),
99
byLabelhash: index().on(t.labelhash),
100
byParentId: index().on(t.parentId),
101
byOwnerId: index().on(t.ownerId),
0 commit comments