Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign upNaming Collision When Column Called "Timestamp". #1018
Comments
This comment has been minimized.
|
Interesting case, and one I haven't seen in production so far! We've seen many column names that are also Rust keywords (like I'm fairly certain we know the right solution for this, though: Allowing you to rename the columns on the Rust side. This is tracked by #967. I hope it's okay for me to close this issue (to continue discussion in #967); if not, or if I missed something, just let me know. :) |
killercup
closed this
Jul 11, 2017
killercup
referenced this issue
Jul 11, 2017
Closed
Allow to rename table columns in table! macro and do it automatically for invalid names #967
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Measter commentedJul 11, 2017
Setup
Versions
Feature Flags
Problem Description
Trying to infer a table with a column called "Timestamp" causes a name collision.
What are you trying to accomplish?
I need to read an existing database, which has multiple tables with columns called "Timestamp". I cannot change the database schema.
What is the actual output?
Are you seeing any additional errors?
No.
Steps to reproduce
Create a table with a column labelled "Timestamp".
Checklist