You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is Issue 312 moved from a Google Code project.
Added by 2011-04-21T19:16:04.000Z by Anton.A....@gmail.com.
Please review that bug for more context and additional comments, but update this bug.
Closed (Fixed).
Original labels: Type-Defect, Priority-Medium, v1.0rc8
Original description
<b>What steps will reproduce the problem?</b>
Using field in wrong case or non-existent field in query fails silently.
> select from cluster:people where lastname = 'Selvey';
0 item(s) found. Query executed in 0.0020 sec(s).
> select from cluster:people where LastName = 'Selvey';
---+--------+--------------------+--------------------+--------------------+--------------------
#| REC ID |SEX |FIRSTNAME |BIRTHDATE |LASTNAME
---+--------+--------------------+--------------------+--------------------+--------------------
0| 7:0|0 |Karen |1988 |Selvey
---+--------+--------------------+--------------------+--------------------+--------------------
or
> select FirstName, LastName, BirthDate from cluster:people limit 1;
---+--------+--------------------+--------------------+--------------------
#| REC ID |FIRSTNAME |LASTNAME |BIRTHDATE
---+--------+--------------------+--------------------+--------------------
0| -1:-1|Karen |Selvey |null
---+--------+--------------------+--------------------+--------------------
1 item(s) found. Query executed in 0.0070 sec(s).
> select FirstName, LastName, birthDate from cluster:people limit 1;
---+--------+--------------------+--------------------+--------------------
#| REC ID |FIRSTNAME |BIRTHDATE |LASTNAME
---+--------+--------------------+--------------------+--------------------
0| -1:-1|Karen |1988 |Selvey
---+--------+--------------------+--------------------+--------------------
1 item(s) found. Query executed in 0.015 sec(s).
<b>What is the expected output? What do you see instead?</b>
I expect that error would raised "No such field"
<b>Please use labels and text to provide additional information.</b>
The text was updated successfully, but these errors were encountered:
This is Issue 312 moved from a Google Code project.
Added by 2011-04-21T19:16:04.000Z by Anton.A....@gmail.com.
Please review that bug for more context and additional comments, but update this bug.
Closed (Fixed).
Original labels: Type-Defect, Priority-Medium, v1.0rc8
Original description
The text was updated successfully, but these errors were encountered: