-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
Potentially Breaking Change: Update ADLA catalog #3118
Conversation
@markcowl shame on me, I know better! :). |
This change affects catalog functionality: * Add new package catalog item type * Update to allow for listing of common catalog items from a base database: - Table - TableValuedFunction - TableStatistics - Views Updates for tests and versions. comment out new tests for ADL doing this until i can run tests in my local environment. Update tests and recordings. Actually copying the right file to the right place. update changelog.
@markcowl @shahabhijeet I have synced to the latest and squahsed my commits down and update the title, description and the checklist. Let me know if you have any questions or need anything else from me! |
@@ -34,6 +34,7 @@ | |||
|
|||
<PropertyGroup> | |||
<TargetFrameworks>net452;netstandard1.4</TargetFrameworks> | |||
<Version>2.2.0-preview</Version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@begoldsm let's continue using as that is being used across, but if you want to use then you don't need . Also you do not need any package related properties.
All you need is the PackageId, assemblyName, assembly description and package tags. All the remaining ones not needed.
Also remove all commented code.
@@ -6,8 +6,8 @@ | |||
@echo off | |||
setlocal | |||
|
|||
set accountSpecFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/0ade6547eff89bab427eb400ebc5da870f2c5bd0/arm-datalake-store/account/2016-11-01/swagger/account.json" | |||
set filesystemSpecFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/0ade6547eff89bab427eb400ebc5da870f2c5bd0/arm-datalake-store/filesystem/2016-11-01/swagger/filesystem.json" | |||
set accountSpecFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/12a6c2299296b6877fa1e5a03ed42752445877dc/arm-datalake-store/account/2016-11-01/swagger/account.json" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@begoldsm was this missed as part of earlier checkin for the DataLake Store?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no I just want to keep all specs at the same commit level.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@begoldsm URL, licensense agreement, generating assembly version info. All this is getting controlled from common properties. So removing them will be really make all the nuget consistent
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@shahabhijeet this has been fixed and I removed all other entries. I am also, in the next iteration, moving the package ID to the top for easier identification.
This cleans up files that are no longer used and updates csproj files to remove commented out sections
We were getting some null reference exceptions on occasion so ensuring none of these nested properties are null before indexing to them.
Description
This change updates the ADLA catalog to do the following:
This checklist is used to make sure that common guidelines for a pull request are followed.
General Guidelines
Testing Guidelines
SDK Generation Guidelines
project.json
andAssemblyInfo.cs
files have been updated with the new version of the SDK.