-
Notifications
You must be signed in to change notification settings - Fork 39
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
We should not support SQL Server specific syntax or features #231
Comments
@ChrisJollyAU Please link the PR(s) that fixed this to this issue. Thanks! |
Didn't need to make any changes as the issue wasn't an issue. I believe this got open due to a comment I had with my PR for byte array support #228 .
If that was true then changing it all to |
I am still finding references for
Jet does not support the (There are other SQL Server specific code paths as well. For example, the So this issue should be reopened. |
Are you talking about in the That is only used when scaffolding a database (i.e. database first). The model gets created from This is the value that is later used to match against the If you want to do anything, just delete the respective lines.
Correct. There are no sequences in Jet. Effectively they are just a no-op. All they do is set or get the annotation, but nowhere actually uses the annotation value |
Right, those kind of references is what this issue is about. All SQL Server specific syntax references or features that are not part of Jet (meaning not actually implemented or working), should be removed from the codebase. |
Not really a bug then. More just code that will never be used. Changed tag to code-cleanup |
Sure, that's a first then, but its a good idea to expand the tag collection. (It's code that should never be used. Currently, it could be used by any user.) |
For example, the store type
varbinary(max)
should not be supported. The Jet equivalent would just be alongbinary
.The text was updated successfully, but these errors were encountered: