-
Notifications
You must be signed in to change notification settings - Fork 100
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
ORA-00904: "EMAIL": invalid identifier #1013
Comments
Hi @bliszewski , |
Hello @ikedas, List members are returned in the review page, can be dumped with sympa.pl, and can be sent to. |
ikedas
added a commit
that referenced
this issue
Oct 13, 2020
Oracle: ORA-00904: "EMAIL": invalid identifier (#1013)
@bliszewski , thank you for reporting bug and confirming fix! Maybe mixed version will be released in this month. |
racke
pushed a commit
to racke/sympa
that referenced
this issue
Nov 10, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Querying list subscribers against an Oracle database fails with
ORA-00904: "EMAIL": invalid identifier
.This impacts most (all?) activities that query list subscribers including sending messages to the list.
This appears to be Oracle specific, where double-quotation marks are treated as a literal part of the column alias.
Version
6.2.56
Installation Method
RPM from RHEL 7 package repositories with Oracle database.
Expected behavior
Query should succeed and return list subscribers.
Actual behavior
Query fails, manifesting in several ways. The SQL error can be seen in the log but errors may not be reported to the user.
/review/
returns no results even when searching for an exact subscriber email. It can however find subscribers "like" the search term.sympa.pl --dump_users --list=my-list
creates an emptymembers.dump
.Additional information
Sample excerpt from log (identified names and references have been chagned)
The issue appears to be between then lines:
user_subscriber AS "email"
which creates the column alias as"email"
and
ORDER BY email
which attempts to reference the columnemail
(without quotes).The text was updated successfully, but these errors were encountered: