TypeError: Cannot read properties of undefined (reading 'value') at withReturning

this is a fun error
TypeError: Cannot read properties of undefined (reading 'value')
at withReturning (/Users/omar/code/1up/node_modules/better-auth/dist/adapters/drizzle-adapter/index.cjs:169:38)
TypeError: Cannot read properties of undefined (reading 'value')
at withReturning (/Users/omar/code/1up/node_modules/better-auth/dist/adapters/drizzle-adapter/index.cjs:169:38)
with some fun code to match
withReturning: async (model, builder, data, where) => {
if (config.provider !== "mysql") {
const c = await builder.returning();
return c[0];
}
await builder.execute();
const schemaModel = getSchema(model);
const builderVal = builder.config?.values;
if (where?.length) {
const clause = convertWhereClause(where, model);
const res = await db.select().from(schemaModel).where(...clause);
return res[0];
} else if (builderVal) {
const tId = builderVal[0]?.id.value;
const res = await db.select().from(schemaModel).where(drizzleOrm.eq(schemaModel.id, tId));
return res[0];
} else if (data.id) {
const res = await db.select().from(schemaModel).where(drizzleOrm.eq(schemaModel.id, data.id));
return res[0];
}
},
withReturning: async (model, builder, data, where) => {
if (config.provider !== "mysql") {
const c = await builder.returning();
return c[0];
}
await builder.execute();
const schemaModel = getSchema(model);
const builderVal = builder.config?.values;
if (where?.length) {
const clause = convertWhereClause(where, model);
const res = await db.select().from(schemaModel).where(...clause);
return res[0];
} else if (builderVal) {
const tId = builderVal[0]?.id.value;
const res = await db.select().from(schemaModel).where(drizzleOrm.eq(schemaModel.id, tId));
return res[0];
} else if (data.id) {
const res = await db.select().from(schemaModel).where(drizzleOrm.eq(schemaModel.id, data.id));
return res[0];
}
},
5 Replies
McPizza
McPizzaOP3w ago
using planetscale via drizzle id column is a customType column (dont think it makes a difference) heres the value of builderVal[0]
val: {
identifier: Param {
brand: undefined,
value: 'sign-in-otp-omar@mcpizza',
encoder: [MySqlVarChar]
},
value: Param {
brand: undefined,
value: '157997',
encoder: [MySqlVarChar]
},
expiresAt: Param {
brand: undefined,
value: 2025-03-16T23:52:23.981Z,
encoder: [MySqlTimestamp]
},
createdAt: Param {
brand: undefined,
value: 2025-03-16T23:47:23.981Z,
encoder: [MySqlTimestamp]
},
updatedAt: Param {
brand: undefined,
value: 2025-03-16T23:47:23.981Z,
encoder: [MySqlTimestamp]
}
}
val: {
identifier: Param {
brand: undefined,
value: 'sign-in-otp-omar@mcpizza',
encoder: [MySqlVarChar]
},
value: Param {
brand: undefined,
value: '157997',
encoder: [MySqlVarChar]
},
expiresAt: Param {
brand: undefined,
value: 2025-03-16T23:52:23.981Z,
encoder: [MySqlTimestamp]
},
createdAt: Param {
brand: undefined,
value: 2025-03-16T23:47:23.981Z,
encoder: [MySqlTimestamp]
},
updatedAt: Param {
brand: undefined,
value: 2025-03-16T23:47:23.981Z,
encoder: [MySqlTimestamp]
}
}
there is no ID column being returned for refrence, this is how the schema looks
id: MySqlCustomColumn {
name: 'id',
keyAsName: false,
primary: true,
notNull: true,
default: undefined,
defaultFn: [Function (anonymous)],
onUpdateFn: undefined,
hasDefault: true,
isUnique: false,
uniqueName: 'verification_tokens_id_unique',
uniqueType: undefined,
dataType: 'custom',
columnType: 'MySqlCustomColumn',
enumValues: undefined,
generated: undefined,
generatedIdentity: undefined,
config: [Object],
table: [Circular *1],
sqlName: 'BINARY(16)',
mapTo: [Function: toDriver],
mapFrom: [Function: fromDriver]
},
id: MySqlCustomColumn {
name: 'id',
keyAsName: false,
primary: true,
notNull: true,
default: undefined,
defaultFn: [Function (anonymous)],
onUpdateFn: undefined,
hasDefault: true,
isUnique: false,
uniqueName: 'verification_tokens_id_unique',
uniqueType: undefined,
dataType: 'custom',
columnType: 'MySqlCustomColumn',
enumValues: undefined,
generated: undefined,
generatedIdentity: undefined,
config: [Object],
table: [Circular *1],
sqlName: 'BINARY(16)',
mapTo: [Function: toDriver],
mapFrom: [Function: fromDriver]
},
note the mapTo and mapFrom functions this is what drizzle uses to transform the custom data from and to the DB so far my solution is to do the following:
const tId = builderVal[0]?.id?.value;
if(tId) {
const res = await db.select().from(schemaModel).where(drizzleOrm.eq(schemaModel.id, tId));
return res[0];
}
const fieldValue = builderVal[0]?.identifier?.value;
if(fieldValue) {
const res = await db.select().from(schemaModel).where(drizzleOrm.eq(schemaModel.identifier, fieldValue));
return res[0];
}
return null;
const tId = builderVal[0]?.id?.value;
if(tId) {
const res = await db.select().from(schemaModel).where(drizzleOrm.eq(schemaModel.id, tId));
return res[0];
}
const fieldValue = builderVal[0]?.identifier?.value;
if(fieldValue) {
const res = await db.select().from(schemaModel).where(drizzleOrm.eq(schemaModel.identifier, fieldValue));
return res[0];
}
return null;
obviously this only works on one type of auth table but at lease i can test more now
bekacru
bekacru3w ago
Are you on the latest version of better auth?
McPizza
McPizzaOP3w ago
on v1.2.3 @bekacru
bekacru
bekacru3w ago
We have had similar problem before with mysql + drizzle. It was fixed some versions ago and we have specefic test for mysql :)) But seems like we missed something or there is an issue specifically with planetscale. Will look into it.
McPizza
McPizzaOP3w ago
GitHub
1up/packages/db at main · un/1up
Open Source Longevity System; Live Longer + Sharper + Better - un/1up

Did you find this page helpful?