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

[BUG]:arrayJoin doesn't seem to work with string arrays #4034

Open
1 task done
nick-inkeep opened this issue Jan 28, 2025 · 0 comments
Open
1 task done

[BUG]:arrayJoin doesn't seem to work with string arrays #4034

nick-inkeep opened this issue Jan 28, 2025 · 0 comments
Labels
bug Something isn't working

Comments

@nick-inkeep
Copy link

nick-inkeep commented Jan 28, 2025

Report hasn't been filed before.

  • I have verified that the bug I'm about to report hasn't been filed before.

What version of drizzle-orm are you using?

0.39.0

What version of drizzle-kit are you using?

0.30.3

Other packages

No response

Describe the Bug

The following query arrayOverlaps where clause resulted in an unexpected ERR error: operator does not exist: text[] && record error

 .where(
      and(
        eq(table.organizationId, orgId),
        arrayOverlaps(table.messageIds, questionIds),
      ),
    );

This exact replacement does work:

  const formattedIds = questionIds.map(id => `'${id}'`).join(', ');

 .where(
      and(
        eq(table.organizationId, orgId),
        sql.raw(`table.message_ids && ARRAY[${formattedIds}]::text[]`),
      ),

Also tried using `sql`` variations and not seemed to work, had to use sql.raw() in the end.

@nick-inkeep nick-inkeep added the bug Something isn't working label Jan 28, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant