Hi Lucas Pires Savassa
The error you're encountering indicates that the column properties_s
is being referenced in your query, but it does not exist in your dataset or event schema. This could happen if there is a mismatch between the column name used in the query and the actual column in the data stream.
- Check the Data Schema: Look at the data you're working with to see if
properties_s
is a valid column. The name might have changed. - Find the Correct Column: If
properties_s
isn't there, find the correct column that should be used instead. You can check the event data or logs for this.
If the column properties_s doesn't exist, which column should I use instead?
Check the Table: If you're not sure, run this query to view the columns in your data:
SELECT * FROM input_stream LIMIT 10
This will help you find the right column. Once you find the correct column, replace properties_s
in your query with it.
I hope this helps. Please let us know if you have any further questions.
Kindly consider upvoting the comment if the information provided is helpful. This can assist other community members in resolving similar issues.