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
influxdb3 query --database=test "SELECT * FROM airSensors LIMIT 10"
This should result in the following error:
Query command failed: server responded with error [500 Internal Server Error]: query error: error while planning query: Error during planning: table 'public.iox.airsensors' not found
The error indicates that the lowercaseairsensors table does not exist.
Performing a SHOW MEASUREMENTS indicates that the table is there, but with the camelCase name airSensors, i.e., as it was in the written line protocol.
Problem statement
There may be an issue with case sensitivity in table name resolution.
Steps to reproduce
Perform the following set of writes
Then query the resulting table:
This should result in the following error:
The error indicates that the lowercase
airsensors
table does not exist.Performing a
SHOW MEASUREMENTS
indicates that the table is there, but with the camelCase nameairSensors
, i.e., as it was in the written line protocol.Proposed solution
The text was updated successfully, but these errors were encountered: