-
Notifications
You must be signed in to change notification settings - Fork 55
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
Array intersection operator #73
Comments
Hi. |
Can you give some guidance on how to implememt that? |
Actually this case is more complex, |
We need the intersection && operator in posgresql to check if two arrays have elements in common: I think this operator is equivalent to hasAny operator in clickhouse: Am I wrong? Assuming this is correct I implemented it in a fork: I translate the following operators:
|
Missed these functions, could you add tests to check that they are working correctly and make a pull request? |
I will do
El dg., 18 de jul. 2021, 19:16, Ildus Kurbangaliev ***@***.***>
va escriure:
… Missed these functions, could you add tests that they are working
correctly and make a pull request?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#73 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAJEDVCRFGL4QMPDC75ZFSLTYMD7TANCNFSM5AIUWUWQ>
.
|
Hi!
I tried a query using "&&" postgresql array operator:
where administration_routes is an array field accessed through the fdw but it fails:
ERROR: clickhouse_fdw: DB::Exception: Syntax error: failed at position 74 ('&'): && ['Oral'])). Unrecognized token: '&'
Are array operators avaliable through the fdw?
The text was updated successfully, but these errors were encountered: