Skip to content

Commit

Permalink
add jira ticket to singlestore-common.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Rodriguespn committed Sep 20, 2024
1 parent ba61b82 commit bab7f4a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion drizzle-orm/src/monomigrator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export async function migrate(

return migrate(db as VercelPgDatabase, config as string | MigrationConfig);
}
case 'SingleStore2Database': {
case 'SingleStoreDriverDatabase': {
const { migrate } = await import('./singlestore/migrator');

return migrate(db as SingleStoreDriverDatabase, config as MigrationConfig);
Expand Down
1 change: 1 addition & 0 deletions integration-tests/tests/singlestore/singlestore-common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2400,6 +2400,7 @@ export function tests(driver?: string) {
await db.execute(sql`drop table if exists \`datestable\``);
});

// TODO (https://memsql.atlassian.net/browse/MCDB-63261) allow chaining limit and orderby in subquery
test('set operations (union) from query builder with subquery', async (ctx) => {
const { db } = ctx.singlestore;

Expand Down

0 comments on commit bab7f4a

Please sign in to comment.