├── .gitattributes ├── .gitignore ├── .gitmodules ├── CODE_OF_CONDUCT.md ├── LICENSE ├── PowerQuerySdk.vsix ├── README.md ├── SECURITY.md ├── blobs ├── credentialPrompt.png ├── credentialPromptWithPath.png ├── credentialPromptWithUrl.png ├── csvDocument.png ├── dataSourceSettingsCreds.png ├── dataSourceSettingsJson.png ├── dataSourceSettingsLabel.png ├── deepDiveVideo.png ├── defaultFunctionInfo.png ├── defaultFunctionPrompt.png ├── graph1.png ├── graph2.png ├── graph3.png ├── graph4.png ├── graph5.png ├── graph6.png ├── graph7.png ├── graph8.png ├── graph9.png ├── helloWorldWithDocs.png ├── helloWorldWithDocsInfo.png ├── helloworld1.png ├── helloworld2.png ├── helloworld3.png ├── itemKinds.png ├── navTableAsTable.png ├── navTableNested.png ├── navTableSample.png ├── navtable.png ├── openapi_apigurus.png ├── pbigetdata.png ├── trippin10UnitTestLog1.png ├── trippin10UnitTestLog2.png ├── trippin1Creds.png ├── trippin1Function.png ├── trippin1GetData.png ├── trippin1Me.png ├── trippin1NavTable.png ├── trippin1Results.png ├── trippin2Airlines.png ├── trippin2Airports.png ├── trippin2FakeNav.png ├── trippin2Fiddler.png ├── trippin2Firewall.png ├── trippin2ODataResult.png ├── trippin2Privacy.png ├── trippin2RawList.png ├── trippin3Nav.png ├── trippin3Query.png ├── trippin3Table.png ├── trippin3Table2.png ├── trippin4Complete.png ├── trippin4CredentialsTab.png ├── trippin4NavigatorOData.png ├── trippin4NewPrompt.png ├── trippin4Paths.png ├── trippin4UriCombine.png ├── trippin5Fiddler.png ├── trippin5Paging.png ├── trippin5People.png ├── trippin6AirlineNoSchema.png ├── trippin6AirlineTableSchema.png ├── trippin6AirlineWithSchema.png ├── trippin6PQNoSchema.png ├── trippin6PQWithSchema.png ├── trippin6PeopleWithSchema.png ├── trippin7UnitTest1.png ├── trippin7UnitTest2.png ├── trippin7UnitTest3.png ├── trippin8EnableTrace.png ├── trippin8Error.png ├── trippin8ErrorLog.png ├── trippin8Log.png ├── trippin8LogFunction.png ├── trippin8ProjectProperties.png ├── trippin8TraceWithType.png ├── trippin9Gateway.png ├── trippin9Navigator.png ├── trippin9Settings1.png ├── trippin9Settings2.png ├── trippin9TestConnection.png ├── unitTestingFailure.png ├── unitTestingSample.png └── vs2017_project.png ├── docs └── README.md ├── editors ├── Crayon │ ├── README.md │ ├── m.txt │ ├── modifier.txt │ ├── operator.txt │ ├── reserved.txt │ ├── statement.txt │ └── type.txt ├── Notepad++ │ ├── README.md │ └── mlang_npp.xml ├── SublimeText │ ├── PowerQueryExpression.tmLanguage │ └── PowerQuerySection.tmLanguage └── vscode │ ├── .vscode │ └── launch.json │ ├── CHANGELOG.md │ ├── README.md │ ├── language-configuration.json │ ├── package.json │ ├── syntaxes │ └── powerqueryexpression.tmLanguage │ └── vsc-extension-quickstart.md ├── samples ├── DataWorldSwagger │ ├── .vscode │ │ └── settings.json │ ├── DataWorldSwagger.pq │ ├── DataWorldSwagger.proj │ ├── DataWorldSwagger.query.pq │ ├── client_id │ ├── client_secret │ └── resources.resx ├── DirectQueryForSQL │ ├── .vscode │ │ └── settings.json │ ├── DirectQueryForSQL.pq │ ├── DirectQueryForSQL.proj │ ├── DirectQueryForSQL.query.pq │ ├── DirectQueryForSQL16.png │ ├── DirectQueryForSQL20.png │ ├── DirectQueryForSQL24.png │ ├── DirectQueryForSQL32.png │ ├── DirectQueryForSQL40.png │ ├── DirectQueryForSQL48.png │ ├── DirectQueryForSQL64.png │ ├── README.md │ └── resources.resx ├── Github │ ├── .vscode │ │ └── settings.json │ ├── README.md │ ├── client_id │ ├── client_secret │ ├── github.pq │ ├── github.proj │ ├── github.query.pq │ ├── github16.png │ ├── github20.png │ ├── github24.png │ ├── github32.png │ ├── github40.png │ ├── github48.png │ ├── github64.png │ └── resources.resx ├── HelloWorld │ ├── .vscode │ │ └── settings.json │ ├── HelloWorld.pq │ ├── HelloWorld.proj │ ├── HelloWorld.query.pq │ ├── HelloWorld16.png │ ├── HelloWorld20.png │ ├── HelloWorld24.png │ ├── HelloWorld32.png │ ├── HelloWorld40.png │ ├── HelloWorld48.png │ ├── HelloWorld64.png │ ├── README.md │ └── resources.resx ├── HelloWorldWithDocs │ ├── .vscode │ │ └── settings.json │ ├── HelloWorldWithDocs.pq │ ├── HelloWorldWithDocs.proj │ ├── HelloWorldWithDocs.query.pq │ └── README.md ├── NativeQuery │ └── ODBC │ │ └── SQL ODBC │ │ ├── Finish │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── Diagnostics.pqm │ │ ├── OdbcConstants.pqm │ │ ├── SqlODBC.pq │ │ ├── SqlODBC.proj │ │ ├── SqlODBC16.png │ │ ├── SqlODBC20.png │ │ ├── SqlODBC24.png │ │ ├── SqlODBC32.png │ │ ├── SqlODBC40.png │ │ ├── SqlODBC48.png │ │ ├── SqlODBC64.png │ │ └── resources.resx │ │ └── Start │ │ ├── .vscode │ │ └── settings.json │ │ ├── Diagnostics.pqm │ │ ├── OdbcConstants.pqm │ │ ├── SqlODBC.pq │ │ ├── SqlODBC.proj │ │ ├── SqlODBC16.png │ │ ├── SqlODBC20.png │ │ ├── SqlODBC24.png │ │ ├── SqlODBC32.png │ │ ├── SqlODBC40.png │ │ ├── SqlODBC48.png │ │ ├── SqlODBC64.png │ │ └── resources.resx ├── NavigationTable │ ├── .vscode │ │ └── settings.json │ ├── NavigationTable.pq │ ├── NavigationTable.proj │ ├── NavigationTable.query.pq │ └── README.md ├── OAuthPKCE │ └── PKCESample.pq ├── ODBC │ ├── HiveSample │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── Diagnostics.pqm │ │ ├── HiveSample.pq │ │ ├── HiveSample.proj │ │ ├── HiveSample.query.pq │ │ ├── HiveSample16.png │ │ ├── HiveSample20.png │ │ ├── HiveSample24.png │ │ ├── HiveSample32.png │ │ ├── HiveSample40.png │ │ ├── HiveSample48.png │ │ ├── HiveSample64.png │ │ ├── OdbcConstants.pqm │ │ ├── README.md │ │ └── resources.resx │ ├── ImpalaODBC │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── ImpalaODBC.pq │ │ ├── ImpalaODBC.proj │ │ └── ImpalaODBC.query.pq │ ├── RedshiftODBC │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── Diagnostics.pqm │ │ ├── OdbcConstants.pqm │ │ ├── RedshiftODBC.pq │ │ ├── RedshiftODBC.proj │ │ └── RedshiftODBC.query.pq │ ├── SnowflakeODBC │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── Diagnostics.pqm │ │ ├── OdbcConstants.pqm │ │ ├── SnowflakeODBC.pq │ │ ├── SnowflakeODBC.proj │ │ └── SnowflakeODBC.query.pq │ └── SqlODBC │ │ ├── .vscode │ │ └── settings.json │ │ ├── Diagnostics.pqm │ │ ├── OdbcConstants.pqm │ │ ├── SqlODBC.pq │ │ ├── SqlODBC.proj │ │ ├── SqlODBC.query.pq │ │ ├── SqlODBC16.png │ │ ├── SqlODBC20.png │ │ ├── SqlODBC24.png │ │ ├── SqlODBC32.png │ │ ├── SqlODBC40.png │ │ ├── SqlODBC48.png │ │ ├── SqlODBC64.png │ │ └── resources.resx ├── OData │ └── AnnotationsSample │ │ ├── .vscode │ │ └── settings.json │ │ ├── AnnotationsSample.pq │ │ ├── AnnotationsSample.proj │ │ ├── AnnotationsSample.query.pq │ │ ├── AnnotationsSample16.png │ │ ├── AnnotationsSample20.png │ │ ├── AnnotationsSample24.png │ │ ├── AnnotationsSample32.png │ │ ├── AnnotationsSample40.png │ │ ├── AnnotationsSample48.png │ │ ├── AnnotationsSample64.png │ │ ├── README.md │ │ └── resources.resx ├── OpenApiSample │ ├── .vscode │ │ └── settings.json │ ├── OpenApiSample.pq │ ├── OpenApiSample.proj │ ├── OpenApiSample.query.pq │ ├── README.md │ └── apisGuru.json ├── TripPin │ ├── 1-OData │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── README.md │ │ ├── TripPin.pq │ │ ├── TripPin.proj │ │ └── TripPin.query.pq │ ├── 10-TableView1 │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── Diagnostics.pqm │ │ ├── README.md │ │ ├── Table.ChangeType.pqm │ │ ├── Table.GenerateByPage.pqm │ │ ├── Table.ToNavigationTable.pqm │ │ ├── TripPin.pq │ │ ├── TripPin.proj │ │ └── TripPin.query.pq │ ├── 2-Rest │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── README.md │ │ ├── TripPin.pq │ │ ├── TripPin.proj │ │ └── TripPin.query.pq │ ├── 3-NavTables │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── README.md │ │ ├── TripPin.pq │ │ ├── TripPin.proj │ │ └── TripPin.query.pq │ ├── 4-Paths │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── README.md │ │ ├── TripPin.pq │ │ ├── TripPin.proj │ │ └── TripPin.query.pq │ ├── 5-Paging │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── README.md │ │ ├── TripPin.pq │ │ ├── TripPin.proj │ │ └── TripPin.query.pq │ ├── 6-Schema │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── README.md │ │ ├── TripPin.pq │ │ ├── TripPin.proj │ │ └── TripPin.query.pq │ ├── 7-AdvancedSchema │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── README.md │ │ ├── Table.ChangeType.pqm │ │ ├── Table.GenerateByPage.pqm │ │ ├── Table.ToNavigationTable.pqm │ │ ├── TripPin.pq │ │ ├── TripPin.proj │ │ └── TripPin.query.pq │ ├── 8-Diagnostics │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── Diagnostics.pqm │ │ ├── README.md │ │ ├── Table.ChangeType.pqm │ │ ├── Table.GenerateByPage.pqm │ │ ├── Table.ToNavigationTable.pqm │ │ ├── TripPin.pq │ │ ├── TripPin.proj │ │ └── TripPin.query.pq │ ├── 9-TestConnection │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── Diagnostics.pqm │ │ ├── README.md │ │ ├── Table.ChangeType.pqm │ │ ├── Table.GenerateByPage.pqm │ │ ├── Table.ToNavigationTable.pqm │ │ ├── TripPin.pq │ │ ├── TripPin.proj │ │ └── TripPin.query.pq │ └── README.md ├── UnitTesting │ ├── .vscode │ │ └── settings.json │ ├── README.md │ ├── UnitTesting.pq │ ├── UnitTesting.proj │ └── UnitTesting.query.pq ├── dirs.proj └── global.json └── testframework ├── data ├── PQSDKTestData.md ├── PQSDKTestFrameworkDataSchema.sql ├── nyc_taxi_tripdata.csv └── taxi+_zone_lookup.csv └── tests ├── ConnectorConfigs └── generic │ ├── ParameterQueries │ └── Generic.parameterquery.pq │ └── Settings │ ├── SanitySettings.json │ └── StandardSettings.json ├── PQSDKTestSuites.md ├── RunPQSDKTestSuites.ps1 ├── RunPQSDKTestSuitesSettings.json ├── RunPQSDKTestSuitesSettingsTemplate.json └── TestSuites ├── Sanity ├── Taxi │ ├── AllTypes.query.pq │ ├── AllTypes.query.pqout │ ├── AllTypesRowCount.query.pq │ ├── AllTypesRowCount.query.pqout │ ├── AllTypesSchema.query.pq │ └── AllTypesSchema.query.pqout └── Zone │ ├── AllTypesZone.query.pq │ ├── AllTypesZone.query.pqout │ ├── AllTypesZoneRowCount.query.pq │ ├── AllTypesZoneRowCount.query.pqout │ ├── AllTypesZoneSchema.query.pq │ └── AllTypesZoneSchema.query.pqout └── Standard ├── Datatypes ├── AddColumnSpecialCharacters.query.pq ├── AddColumnSpecialCharacters.query.pqout ├── AllTypesNativeQuery.query.pqout ├── AlltypesNativeQuery.query.pq ├── Cast.query.pq ├── Cast.query.pqout ├── FirstEntry.query.pq ├── FirstEntry.query.pqout ├── IfBoolean.query.pq ├── IfBoolean.query.pqout ├── MultiplyColumnsOfDifferenttypes.query.pq ├── MultiplyColumnsOfDifferenttypes.query.pqout ├── NullableEquals.query.pq ├── NullableEquals.query.pqout ├── SelectRowsBoolColumn.query.pq ├── SelectRowsBoolColumn.query.pqout ├── SkipTake.query.pq ├── SkipTake.query.pqout ├── Sort.query.pq ├── Sort.query.pqout ├── SortDatetime.query.pq ├── SortDatetime.query.pqout ├── SortTimestamp.query.pq └── SortTimestamp.query.pqout ├── Date ├── DateFilter_QueryFolding.query.pq ├── DateFilter_QueryFolding.query.pqout ├── DateFunctions_over_Date_1.query.pq ├── DateFunctions_over_Date_1.query.pqout ├── DateFunctions_over_Date_2.query.pq ├── DateFunctions_over_Date_2.query.pqout ├── DateFunctions_over_Date_3.query.pq ├── DateFunctions_over_Date_3.query.pqout ├── DateFunctions_over_Datetime_1.query.pq ├── DateFunctions_over_Datetime_1.query.pqout ├── DateFunctions_over_Datetime_2a.query.pq ├── DateFunctions_over_Datetime_2a.query.pqout ├── DateFunctions_over_Datetime_2b.query.pq ├── DateFunctions_over_Datetime_2b.query.pqout ├── DateFunctions_over_Datetime_3.query.pq ├── DateFunctions_over_Datetime_3.query.pqout ├── DateFunctions_over_Datetime_4.query.pq ├── DateFunctions_over_Datetime_4.query.pqout ├── DateTimeAddDuration.query.pq ├── DateTimeAddDuration.query.pqout ├── DateTimeArithmetic.query.pq └── DateTimeArithmetic.query.pqout ├── FirstN ├── FirstNGroup.query.pq ├── FirstNGroup.query.pqout ├── FirstNGroupSort.query.pq ├── FirstNGroupSort.query.pqout ├── FirstNSort.query.pq ├── FirstNSort.query.pqout ├── FirstNSortGroup.query.pq └── FirstNSortGroup.query.pqout ├── Functions ├── Count.query.pq ├── Count.query.pqout ├── FoldListAverage.query.pq ├── FoldListAverage.query.pqout ├── FoldListCount.query.pq ├── FoldListCount.query.pqout ├── FoldListFirst.query.pq ├── FoldListFirst.query.pqout ├── FoldListFirstNGroup.query.pq ├── FoldListFirstNGroup.query.pqout ├── FoldListMax.query.pq ├── FoldListMax.query.pqout ├── FoldListMin.query.pq ├── FoldListMin.query.pqout ├── FoldListNotNullCount.query.pq ├── FoldListNotNullCount.query.pqout ├── FoldListStandardDeviation.query.pq ├── FoldListStandardDeviation.query.pqout ├── FoldListSum.query.pq ├── FoldListSum.query.pqout ├── FoldTableRowCount.query.pq ├── FoldTableRowCount.query.pqout ├── FoldsDateTimeComparison.query.pq ├── FoldsDateTimeComparison.query.pqout ├── FoldsTextFromDateTime.query.pq └── FoldsTextFromDateTime.query.pqout ├── Join ├── TableJoin_1.query.pq ├── TableJoin_1.query.pqout ├── TableJoin_2.query.pq ├── TableJoin_2.query.pqout ├── TableJoin_3.query.pq ├── TableJoin_3.query.pqout ├── TableJoin_4.query.pq └── TableJoin_4.query.pqout ├── Math ├── Arithmetic.query.pq ├── Arithmetic.query.pqout ├── NumberFunctions.query.pq ├── NumberFunctions.query.pqout ├── Sum.query.pq └── Sum.query.pqout ├── Metadata ├── CreateNavigationPropertiesOption.query.pq ├── CreateNavigationPropertiesOption.query.pqout ├── NavigationMetadata.query.pq └── NavigationMetadata.query.pqout ├── Text ├── AddColumnWithTextStartsWith.query.pq ├── AddColumnWithTextStartsWith.query.pqout ├── ConcatOverflow.query.pq ├── ConcatOverflow.query.pqout ├── SelectRowsStringColumn.query.pq ├── SelectRowsStringColumn.query.pqout ├── StringLiteral.query.pq ├── StringLiteral.query.pqout ├── TextFromDecimal.query.pq ├── TextFromDecimal.query.pqout ├── TextFunctions.query.pq └── TextFunctions.query.pqout └── Time ├── TimeFunctions_EndOfHour.query.pq ├── TimeFunctions_EndOfHour.query.pqout ├── TimeFunctions_Hour.query.pq ├── TimeFunctions_Hour.query.pqout ├── TimeFunctions_Minute.query.pq ├── TimeFunctions_Minute.query.pqout ├── TimeFunctions_Second.query.pq ├── TimeFunctions_Second.query.pqout ├── TimeFunctions_StartOfHour.query.pq ├── TimeFunctions_StartOfHour.query.pqout ├── TimeFunctions_TimeSecond.query.pq └── TimeFunctions_TimeSecond.query.pqout /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/.gitmodules -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/LICENSE -------------------------------------------------------------------------------- /PowerQuerySdk.vsix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/PowerQuerySdk.vsix -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/SECURITY.md -------------------------------------------------------------------------------- /blobs/credentialPrompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/credentialPrompt.png -------------------------------------------------------------------------------- /blobs/credentialPromptWithPath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/credentialPromptWithPath.png -------------------------------------------------------------------------------- /blobs/credentialPromptWithUrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/credentialPromptWithUrl.png -------------------------------------------------------------------------------- /blobs/csvDocument.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/csvDocument.png -------------------------------------------------------------------------------- /blobs/dataSourceSettingsCreds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/dataSourceSettingsCreds.png -------------------------------------------------------------------------------- /blobs/dataSourceSettingsJson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/dataSourceSettingsJson.png -------------------------------------------------------------------------------- /blobs/dataSourceSettingsLabel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/dataSourceSettingsLabel.png -------------------------------------------------------------------------------- /blobs/deepDiveVideo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/deepDiveVideo.png -------------------------------------------------------------------------------- /blobs/defaultFunctionInfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/defaultFunctionInfo.png -------------------------------------------------------------------------------- /blobs/defaultFunctionPrompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/defaultFunctionPrompt.png -------------------------------------------------------------------------------- /blobs/graph1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/graph1.png -------------------------------------------------------------------------------- /blobs/graph2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/graph2.png -------------------------------------------------------------------------------- /blobs/graph3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/graph3.png -------------------------------------------------------------------------------- /blobs/graph4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/graph4.png -------------------------------------------------------------------------------- /blobs/graph5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/graph5.png -------------------------------------------------------------------------------- /blobs/graph6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/graph6.png -------------------------------------------------------------------------------- /blobs/graph7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/graph7.png -------------------------------------------------------------------------------- /blobs/graph8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/graph8.png -------------------------------------------------------------------------------- /blobs/graph9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/graph9.png -------------------------------------------------------------------------------- /blobs/helloWorldWithDocs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/helloWorldWithDocs.png -------------------------------------------------------------------------------- /blobs/helloWorldWithDocsInfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/helloWorldWithDocsInfo.png -------------------------------------------------------------------------------- /blobs/helloworld1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/helloworld1.png -------------------------------------------------------------------------------- /blobs/helloworld2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/helloworld2.png -------------------------------------------------------------------------------- /blobs/helloworld3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/helloworld3.png -------------------------------------------------------------------------------- /blobs/itemKinds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/itemKinds.png -------------------------------------------------------------------------------- /blobs/navTableAsTable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/navTableAsTable.png -------------------------------------------------------------------------------- /blobs/navTableNested.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/navTableNested.png -------------------------------------------------------------------------------- /blobs/navTableSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/navTableSample.png -------------------------------------------------------------------------------- /blobs/navtable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/navtable.png -------------------------------------------------------------------------------- /blobs/openapi_apigurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/openapi_apigurus.png -------------------------------------------------------------------------------- /blobs/pbigetdata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/pbigetdata.png -------------------------------------------------------------------------------- /blobs/trippin10UnitTestLog1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin10UnitTestLog1.png -------------------------------------------------------------------------------- /blobs/trippin10UnitTestLog2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin10UnitTestLog2.png -------------------------------------------------------------------------------- /blobs/trippin1Creds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin1Creds.png -------------------------------------------------------------------------------- /blobs/trippin1Function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin1Function.png -------------------------------------------------------------------------------- /blobs/trippin1GetData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin1GetData.png -------------------------------------------------------------------------------- /blobs/trippin1Me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin1Me.png -------------------------------------------------------------------------------- /blobs/trippin1NavTable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin1NavTable.png -------------------------------------------------------------------------------- /blobs/trippin1Results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin1Results.png -------------------------------------------------------------------------------- /blobs/trippin2Airlines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin2Airlines.png -------------------------------------------------------------------------------- /blobs/trippin2Airports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin2Airports.png -------------------------------------------------------------------------------- /blobs/trippin2FakeNav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin2FakeNav.png -------------------------------------------------------------------------------- /blobs/trippin2Fiddler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin2Fiddler.png -------------------------------------------------------------------------------- /blobs/trippin2Firewall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin2Firewall.png -------------------------------------------------------------------------------- /blobs/trippin2ODataResult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin2ODataResult.png -------------------------------------------------------------------------------- /blobs/trippin2Privacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin2Privacy.png -------------------------------------------------------------------------------- /blobs/trippin2RawList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin2RawList.png -------------------------------------------------------------------------------- /blobs/trippin3Nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin3Nav.png -------------------------------------------------------------------------------- /blobs/trippin3Query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin3Query.png -------------------------------------------------------------------------------- /blobs/trippin3Table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin3Table.png -------------------------------------------------------------------------------- /blobs/trippin3Table2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin3Table2.png -------------------------------------------------------------------------------- /blobs/trippin4Complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin4Complete.png -------------------------------------------------------------------------------- /blobs/trippin4CredentialsTab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin4CredentialsTab.png -------------------------------------------------------------------------------- /blobs/trippin4NavigatorOData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin4NavigatorOData.png -------------------------------------------------------------------------------- /blobs/trippin4NewPrompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin4NewPrompt.png -------------------------------------------------------------------------------- /blobs/trippin4Paths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin4Paths.png -------------------------------------------------------------------------------- /blobs/trippin4UriCombine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin4UriCombine.png -------------------------------------------------------------------------------- /blobs/trippin5Fiddler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin5Fiddler.png -------------------------------------------------------------------------------- /blobs/trippin5Paging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin5Paging.png -------------------------------------------------------------------------------- /blobs/trippin5People.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin5People.png -------------------------------------------------------------------------------- /blobs/trippin6AirlineNoSchema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin6AirlineNoSchema.png -------------------------------------------------------------------------------- /blobs/trippin6AirlineTableSchema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin6AirlineTableSchema.png -------------------------------------------------------------------------------- /blobs/trippin6AirlineWithSchema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin6AirlineWithSchema.png -------------------------------------------------------------------------------- /blobs/trippin6PQNoSchema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin6PQNoSchema.png -------------------------------------------------------------------------------- /blobs/trippin6PQWithSchema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin6PQWithSchema.png -------------------------------------------------------------------------------- /blobs/trippin6PeopleWithSchema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin6PeopleWithSchema.png -------------------------------------------------------------------------------- /blobs/trippin7UnitTest1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin7UnitTest1.png -------------------------------------------------------------------------------- /blobs/trippin7UnitTest2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin7UnitTest2.png -------------------------------------------------------------------------------- /blobs/trippin7UnitTest3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin7UnitTest3.png -------------------------------------------------------------------------------- /blobs/trippin8EnableTrace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin8EnableTrace.png -------------------------------------------------------------------------------- /blobs/trippin8Error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin8Error.png -------------------------------------------------------------------------------- /blobs/trippin8ErrorLog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin8ErrorLog.png -------------------------------------------------------------------------------- /blobs/trippin8Log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin8Log.png -------------------------------------------------------------------------------- /blobs/trippin8LogFunction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin8LogFunction.png -------------------------------------------------------------------------------- /blobs/trippin8ProjectProperties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin8ProjectProperties.png -------------------------------------------------------------------------------- /blobs/trippin8TraceWithType.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin8TraceWithType.png -------------------------------------------------------------------------------- /blobs/trippin9Gateway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin9Gateway.png -------------------------------------------------------------------------------- /blobs/trippin9Navigator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin9Navigator.png -------------------------------------------------------------------------------- /blobs/trippin9Settings1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin9Settings1.png -------------------------------------------------------------------------------- /blobs/trippin9Settings2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin9Settings2.png -------------------------------------------------------------------------------- /blobs/trippin9TestConnection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/trippin9TestConnection.png -------------------------------------------------------------------------------- /blobs/unitTestingFailure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/unitTestingFailure.png -------------------------------------------------------------------------------- /blobs/unitTestingSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/unitTestingSample.png -------------------------------------------------------------------------------- /blobs/vs2017_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/blobs/vs2017_project.png -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/docs/README.md -------------------------------------------------------------------------------- /editors/Crayon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/editors/Crayon/README.md -------------------------------------------------------------------------------- /editors/Crayon/m.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/editors/Crayon/m.txt -------------------------------------------------------------------------------- /editors/Crayon/modifier.txt: -------------------------------------------------------------------------------- 1 | optional 2 | nullable 3 | 4 | -------------------------------------------------------------------------------- /editors/Crayon/operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/editors/Crayon/operator.txt -------------------------------------------------------------------------------- /editors/Crayon/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/editors/Crayon/reserved.txt -------------------------------------------------------------------------------- /editors/Crayon/statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/editors/Crayon/statement.txt -------------------------------------------------------------------------------- /editors/Crayon/type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/editors/Crayon/type.txt -------------------------------------------------------------------------------- /editors/Notepad++/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/editors/Notepad++/README.md -------------------------------------------------------------------------------- /editors/Notepad++/mlang_npp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/editors/Notepad++/mlang_npp.xml -------------------------------------------------------------------------------- /editors/SublimeText/PowerQueryExpression.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/editors/SublimeText/PowerQueryExpression.tmLanguage -------------------------------------------------------------------------------- /editors/SublimeText/PowerQuerySection.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/editors/SublimeText/PowerQuerySection.tmLanguage -------------------------------------------------------------------------------- /editors/vscode/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/editors/vscode/.vscode/launch.json -------------------------------------------------------------------------------- /editors/vscode/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/editors/vscode/CHANGELOG.md -------------------------------------------------------------------------------- /editors/vscode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/editors/vscode/README.md -------------------------------------------------------------------------------- /editors/vscode/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/editors/vscode/language-configuration.json -------------------------------------------------------------------------------- /editors/vscode/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/editors/vscode/package.json -------------------------------------------------------------------------------- /editors/vscode/syntaxes/powerqueryexpression.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/editors/vscode/syntaxes/powerqueryexpression.tmLanguage -------------------------------------------------------------------------------- /editors/vscode/vsc-extension-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/editors/vscode/vsc-extension-quickstart.md -------------------------------------------------------------------------------- /samples/DataWorldSwagger/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/DataWorldSwagger/.vscode/settings.json -------------------------------------------------------------------------------- /samples/DataWorldSwagger/DataWorldSwagger.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/DataWorldSwagger/DataWorldSwagger.pq -------------------------------------------------------------------------------- /samples/DataWorldSwagger/DataWorldSwagger.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/DataWorldSwagger/DataWorldSwagger.proj -------------------------------------------------------------------------------- /samples/DataWorldSwagger/DataWorldSwagger.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/DataWorldSwagger/DataWorldSwagger.query.pq -------------------------------------------------------------------------------- /samples/DataWorldSwagger/client_id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/DataWorldSwagger/client_id -------------------------------------------------------------------------------- /samples/DataWorldSwagger/client_secret: -------------------------------------------------------------------------------- 1 | xxxxx -------------------------------------------------------------------------------- /samples/DataWorldSwagger/resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/DataWorldSwagger/resources.resx -------------------------------------------------------------------------------- /samples/DirectQueryForSQL/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/DirectQueryForSQL/.vscode/settings.json -------------------------------------------------------------------------------- /samples/DirectQueryForSQL/DirectQueryForSQL.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/DirectQueryForSQL/DirectQueryForSQL.pq -------------------------------------------------------------------------------- /samples/DirectQueryForSQL/DirectQueryForSQL.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/DirectQueryForSQL/DirectQueryForSQL.proj -------------------------------------------------------------------------------- /samples/DirectQueryForSQL/DirectQueryForSQL.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/DirectQueryForSQL/DirectQueryForSQL.query.pq -------------------------------------------------------------------------------- /samples/DirectQueryForSQL/DirectQueryForSQL16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/DirectQueryForSQL/DirectQueryForSQL16.png -------------------------------------------------------------------------------- /samples/DirectQueryForSQL/DirectQueryForSQL20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/DirectQueryForSQL/DirectQueryForSQL20.png -------------------------------------------------------------------------------- /samples/DirectQueryForSQL/DirectQueryForSQL24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/DirectQueryForSQL/DirectQueryForSQL24.png -------------------------------------------------------------------------------- /samples/DirectQueryForSQL/DirectQueryForSQL32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/DirectQueryForSQL/DirectQueryForSQL32.png -------------------------------------------------------------------------------- /samples/DirectQueryForSQL/DirectQueryForSQL40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/DirectQueryForSQL/DirectQueryForSQL40.png -------------------------------------------------------------------------------- /samples/DirectQueryForSQL/DirectQueryForSQL48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/DirectQueryForSQL/DirectQueryForSQL48.png -------------------------------------------------------------------------------- /samples/DirectQueryForSQL/DirectQueryForSQL64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/DirectQueryForSQL/DirectQueryForSQL64.png -------------------------------------------------------------------------------- /samples/DirectQueryForSQL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/DirectQueryForSQL/README.md -------------------------------------------------------------------------------- /samples/DirectQueryForSQL/resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/DirectQueryForSQL/resources.resx -------------------------------------------------------------------------------- /samples/Github/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/Github/.vscode/settings.json -------------------------------------------------------------------------------- /samples/Github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/Github/README.md -------------------------------------------------------------------------------- /samples/Github/client_id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/Github/client_id -------------------------------------------------------------------------------- /samples/Github/client_secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/Github/client_secret -------------------------------------------------------------------------------- /samples/Github/github.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/Github/github.pq -------------------------------------------------------------------------------- /samples/Github/github.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/Github/github.proj -------------------------------------------------------------------------------- /samples/Github/github.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/Github/github.query.pq -------------------------------------------------------------------------------- /samples/Github/github16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/Github/github16.png -------------------------------------------------------------------------------- /samples/Github/github20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/Github/github20.png -------------------------------------------------------------------------------- /samples/Github/github24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/Github/github24.png -------------------------------------------------------------------------------- /samples/Github/github32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/Github/github32.png -------------------------------------------------------------------------------- /samples/Github/github40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/Github/github40.png -------------------------------------------------------------------------------- /samples/Github/github48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/Github/github48.png -------------------------------------------------------------------------------- /samples/Github/github64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/Github/github64.png -------------------------------------------------------------------------------- /samples/Github/resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/Github/resources.resx -------------------------------------------------------------------------------- /samples/HelloWorld/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/HelloWorld/.vscode/settings.json -------------------------------------------------------------------------------- /samples/HelloWorld/HelloWorld.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/HelloWorld/HelloWorld.pq -------------------------------------------------------------------------------- /samples/HelloWorld/HelloWorld.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/HelloWorld/HelloWorld.proj -------------------------------------------------------------------------------- /samples/HelloWorld/HelloWorld.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/HelloWorld/HelloWorld.query.pq -------------------------------------------------------------------------------- /samples/HelloWorld/HelloWorld16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/HelloWorld/HelloWorld16.png -------------------------------------------------------------------------------- /samples/HelloWorld/HelloWorld20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/HelloWorld/HelloWorld20.png -------------------------------------------------------------------------------- /samples/HelloWorld/HelloWorld24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/HelloWorld/HelloWorld24.png -------------------------------------------------------------------------------- /samples/HelloWorld/HelloWorld32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/HelloWorld/HelloWorld32.png -------------------------------------------------------------------------------- /samples/HelloWorld/HelloWorld40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/HelloWorld/HelloWorld40.png -------------------------------------------------------------------------------- /samples/HelloWorld/HelloWorld48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/HelloWorld/HelloWorld48.png -------------------------------------------------------------------------------- /samples/HelloWorld/HelloWorld64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/HelloWorld/HelloWorld64.png -------------------------------------------------------------------------------- /samples/HelloWorld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/HelloWorld/README.md -------------------------------------------------------------------------------- /samples/HelloWorld/resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/HelloWorld/resources.resx -------------------------------------------------------------------------------- /samples/HelloWorldWithDocs/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/HelloWorldWithDocs/.vscode/settings.json -------------------------------------------------------------------------------- /samples/HelloWorldWithDocs/HelloWorldWithDocs.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/HelloWorldWithDocs/HelloWorldWithDocs.pq -------------------------------------------------------------------------------- /samples/HelloWorldWithDocs/HelloWorldWithDocs.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/HelloWorldWithDocs/HelloWorldWithDocs.proj -------------------------------------------------------------------------------- /samples/HelloWorldWithDocs/HelloWorldWithDocs.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/HelloWorldWithDocs/HelloWorldWithDocs.query.pq -------------------------------------------------------------------------------- /samples/HelloWorldWithDocs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/HelloWorldWithDocs/README.md -------------------------------------------------------------------------------- /samples/NativeQuery/ODBC/SQL ODBC/Finish/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/NativeQuery/ODBC/SQL ODBC/Finish/.vscode/settings.json -------------------------------------------------------------------------------- /samples/NativeQuery/ODBC/SQL ODBC/Finish/Diagnostics.pqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/NativeQuery/ODBC/SQL ODBC/Finish/Diagnostics.pqm -------------------------------------------------------------------------------- /samples/NativeQuery/ODBC/SQL ODBC/Finish/OdbcConstants.pqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/NativeQuery/ODBC/SQL ODBC/Finish/OdbcConstants.pqm -------------------------------------------------------------------------------- /samples/NativeQuery/ODBC/SQL ODBC/Finish/SqlODBC.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/NativeQuery/ODBC/SQL ODBC/Finish/SqlODBC.pq -------------------------------------------------------------------------------- /samples/NativeQuery/ODBC/SQL ODBC/Finish/SqlODBC.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/NativeQuery/ODBC/SQL ODBC/Finish/SqlODBC.proj -------------------------------------------------------------------------------- /samples/NativeQuery/ODBC/SQL ODBC/Finish/SqlODBC16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/NativeQuery/ODBC/SQL ODBC/Finish/SqlODBC16.png -------------------------------------------------------------------------------- /samples/NativeQuery/ODBC/SQL ODBC/Finish/SqlODBC20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/NativeQuery/ODBC/SQL ODBC/Finish/SqlODBC20.png -------------------------------------------------------------------------------- /samples/NativeQuery/ODBC/SQL ODBC/Finish/SqlODBC24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/NativeQuery/ODBC/SQL ODBC/Finish/SqlODBC24.png -------------------------------------------------------------------------------- /samples/NativeQuery/ODBC/SQL ODBC/Finish/SqlODBC32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/NativeQuery/ODBC/SQL ODBC/Finish/SqlODBC32.png -------------------------------------------------------------------------------- /samples/NativeQuery/ODBC/SQL ODBC/Finish/SqlODBC40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/NativeQuery/ODBC/SQL ODBC/Finish/SqlODBC40.png -------------------------------------------------------------------------------- /samples/NativeQuery/ODBC/SQL ODBC/Finish/SqlODBC48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/NativeQuery/ODBC/SQL ODBC/Finish/SqlODBC48.png -------------------------------------------------------------------------------- /samples/NativeQuery/ODBC/SQL ODBC/Finish/SqlODBC64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/NativeQuery/ODBC/SQL ODBC/Finish/SqlODBC64.png -------------------------------------------------------------------------------- /samples/NativeQuery/ODBC/SQL ODBC/Finish/resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/NativeQuery/ODBC/SQL ODBC/Finish/resources.resx -------------------------------------------------------------------------------- /samples/NativeQuery/ODBC/SQL ODBC/Start/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/NativeQuery/ODBC/SQL ODBC/Start/.vscode/settings.json -------------------------------------------------------------------------------- /samples/NativeQuery/ODBC/SQL ODBC/Start/Diagnostics.pqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/NativeQuery/ODBC/SQL ODBC/Start/Diagnostics.pqm -------------------------------------------------------------------------------- /samples/NativeQuery/ODBC/SQL ODBC/Start/OdbcConstants.pqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/NativeQuery/ODBC/SQL ODBC/Start/OdbcConstants.pqm -------------------------------------------------------------------------------- /samples/NativeQuery/ODBC/SQL ODBC/Start/SqlODBC.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/NativeQuery/ODBC/SQL ODBC/Start/SqlODBC.pq -------------------------------------------------------------------------------- /samples/NativeQuery/ODBC/SQL ODBC/Start/SqlODBC.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/NativeQuery/ODBC/SQL ODBC/Start/SqlODBC.proj -------------------------------------------------------------------------------- /samples/NativeQuery/ODBC/SQL ODBC/Start/SqlODBC16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/NativeQuery/ODBC/SQL ODBC/Start/SqlODBC16.png -------------------------------------------------------------------------------- /samples/NativeQuery/ODBC/SQL ODBC/Start/SqlODBC20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/NativeQuery/ODBC/SQL ODBC/Start/SqlODBC20.png -------------------------------------------------------------------------------- /samples/NativeQuery/ODBC/SQL ODBC/Start/SqlODBC24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/NativeQuery/ODBC/SQL ODBC/Start/SqlODBC24.png -------------------------------------------------------------------------------- /samples/NativeQuery/ODBC/SQL ODBC/Start/SqlODBC32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/NativeQuery/ODBC/SQL ODBC/Start/SqlODBC32.png -------------------------------------------------------------------------------- /samples/NativeQuery/ODBC/SQL ODBC/Start/SqlODBC40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/NativeQuery/ODBC/SQL ODBC/Start/SqlODBC40.png -------------------------------------------------------------------------------- /samples/NativeQuery/ODBC/SQL ODBC/Start/SqlODBC48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/NativeQuery/ODBC/SQL ODBC/Start/SqlODBC48.png -------------------------------------------------------------------------------- /samples/NativeQuery/ODBC/SQL ODBC/Start/SqlODBC64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/NativeQuery/ODBC/SQL ODBC/Start/SqlODBC64.png -------------------------------------------------------------------------------- /samples/NativeQuery/ODBC/SQL ODBC/Start/resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/NativeQuery/ODBC/SQL ODBC/Start/resources.resx -------------------------------------------------------------------------------- /samples/NavigationTable/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/NavigationTable/.vscode/settings.json -------------------------------------------------------------------------------- /samples/NavigationTable/NavigationTable.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/NavigationTable/NavigationTable.pq -------------------------------------------------------------------------------- /samples/NavigationTable/NavigationTable.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/NavigationTable/NavigationTable.proj -------------------------------------------------------------------------------- /samples/NavigationTable/NavigationTable.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/NavigationTable/NavigationTable.query.pq -------------------------------------------------------------------------------- /samples/NavigationTable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/NavigationTable/README.md -------------------------------------------------------------------------------- /samples/OAuthPKCE/PKCESample.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/OAuthPKCE/PKCESample.pq -------------------------------------------------------------------------------- /samples/ODBC/HiveSample/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/HiveSample/.vscode/settings.json -------------------------------------------------------------------------------- /samples/ODBC/HiveSample/Diagnostics.pqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/HiveSample/Diagnostics.pqm -------------------------------------------------------------------------------- /samples/ODBC/HiveSample/HiveSample.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/HiveSample/HiveSample.pq -------------------------------------------------------------------------------- /samples/ODBC/HiveSample/HiveSample.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/HiveSample/HiveSample.proj -------------------------------------------------------------------------------- /samples/ODBC/HiveSample/HiveSample.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/HiveSample/HiveSample.query.pq -------------------------------------------------------------------------------- /samples/ODBC/HiveSample/HiveSample16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/HiveSample/HiveSample16.png -------------------------------------------------------------------------------- /samples/ODBC/HiveSample/HiveSample20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/HiveSample/HiveSample20.png -------------------------------------------------------------------------------- /samples/ODBC/HiveSample/HiveSample24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/HiveSample/HiveSample24.png -------------------------------------------------------------------------------- /samples/ODBC/HiveSample/HiveSample32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/HiveSample/HiveSample32.png -------------------------------------------------------------------------------- /samples/ODBC/HiveSample/HiveSample40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/HiveSample/HiveSample40.png -------------------------------------------------------------------------------- /samples/ODBC/HiveSample/HiveSample48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/HiveSample/HiveSample48.png -------------------------------------------------------------------------------- /samples/ODBC/HiveSample/HiveSample64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/HiveSample/HiveSample64.png -------------------------------------------------------------------------------- /samples/ODBC/HiveSample/OdbcConstants.pqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/HiveSample/OdbcConstants.pqm -------------------------------------------------------------------------------- /samples/ODBC/HiveSample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/HiveSample/README.md -------------------------------------------------------------------------------- /samples/ODBC/HiveSample/resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/HiveSample/resources.resx -------------------------------------------------------------------------------- /samples/ODBC/ImpalaODBC/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/ImpalaODBC/.vscode/settings.json -------------------------------------------------------------------------------- /samples/ODBC/ImpalaODBC/ImpalaODBC.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/ImpalaODBC/ImpalaODBC.pq -------------------------------------------------------------------------------- /samples/ODBC/ImpalaODBC/ImpalaODBC.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/ImpalaODBC/ImpalaODBC.proj -------------------------------------------------------------------------------- /samples/ODBC/ImpalaODBC/ImpalaODBC.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/ImpalaODBC/ImpalaODBC.query.pq -------------------------------------------------------------------------------- /samples/ODBC/RedshiftODBC/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/RedshiftODBC/.vscode/settings.json -------------------------------------------------------------------------------- /samples/ODBC/RedshiftODBC/Diagnostics.pqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/RedshiftODBC/Diagnostics.pqm -------------------------------------------------------------------------------- /samples/ODBC/RedshiftODBC/OdbcConstants.pqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/RedshiftODBC/OdbcConstants.pqm -------------------------------------------------------------------------------- /samples/ODBC/RedshiftODBC/RedshiftODBC.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/RedshiftODBC/RedshiftODBC.pq -------------------------------------------------------------------------------- /samples/ODBC/RedshiftODBC/RedshiftODBC.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/RedshiftODBC/RedshiftODBC.proj -------------------------------------------------------------------------------- /samples/ODBC/RedshiftODBC/RedshiftODBC.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/RedshiftODBC/RedshiftODBC.query.pq -------------------------------------------------------------------------------- /samples/ODBC/SnowflakeODBC/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/SnowflakeODBC/.vscode/settings.json -------------------------------------------------------------------------------- /samples/ODBC/SnowflakeODBC/Diagnostics.pqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/SnowflakeODBC/Diagnostics.pqm -------------------------------------------------------------------------------- /samples/ODBC/SnowflakeODBC/OdbcConstants.pqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/SnowflakeODBC/OdbcConstants.pqm -------------------------------------------------------------------------------- /samples/ODBC/SnowflakeODBC/SnowflakeODBC.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/SnowflakeODBC/SnowflakeODBC.pq -------------------------------------------------------------------------------- /samples/ODBC/SnowflakeODBC/SnowflakeODBC.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/SnowflakeODBC/SnowflakeODBC.proj -------------------------------------------------------------------------------- /samples/ODBC/SnowflakeODBC/SnowflakeODBC.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/SnowflakeODBC/SnowflakeODBC.query.pq -------------------------------------------------------------------------------- /samples/ODBC/SqlODBC/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/SqlODBC/.vscode/settings.json -------------------------------------------------------------------------------- /samples/ODBC/SqlODBC/Diagnostics.pqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/SqlODBC/Diagnostics.pqm -------------------------------------------------------------------------------- /samples/ODBC/SqlODBC/OdbcConstants.pqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/SqlODBC/OdbcConstants.pqm -------------------------------------------------------------------------------- /samples/ODBC/SqlODBC/SqlODBC.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/SqlODBC/SqlODBC.pq -------------------------------------------------------------------------------- /samples/ODBC/SqlODBC/SqlODBC.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/SqlODBC/SqlODBC.proj -------------------------------------------------------------------------------- /samples/ODBC/SqlODBC/SqlODBC.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/SqlODBC/SqlODBC.query.pq -------------------------------------------------------------------------------- /samples/ODBC/SqlODBC/SqlODBC16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/SqlODBC/SqlODBC16.png -------------------------------------------------------------------------------- /samples/ODBC/SqlODBC/SqlODBC20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/SqlODBC/SqlODBC20.png -------------------------------------------------------------------------------- /samples/ODBC/SqlODBC/SqlODBC24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/SqlODBC/SqlODBC24.png -------------------------------------------------------------------------------- /samples/ODBC/SqlODBC/SqlODBC32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/SqlODBC/SqlODBC32.png -------------------------------------------------------------------------------- /samples/ODBC/SqlODBC/SqlODBC40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/SqlODBC/SqlODBC40.png -------------------------------------------------------------------------------- /samples/ODBC/SqlODBC/SqlODBC48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/SqlODBC/SqlODBC48.png -------------------------------------------------------------------------------- /samples/ODBC/SqlODBC/SqlODBC64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/SqlODBC/SqlODBC64.png -------------------------------------------------------------------------------- /samples/ODBC/SqlODBC/resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/ODBC/SqlODBC/resources.resx -------------------------------------------------------------------------------- /samples/OData/AnnotationsSample/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/OData/AnnotationsSample/.vscode/settings.json -------------------------------------------------------------------------------- /samples/OData/AnnotationsSample/AnnotationsSample.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/OData/AnnotationsSample/AnnotationsSample.pq -------------------------------------------------------------------------------- /samples/OData/AnnotationsSample/AnnotationsSample.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/OData/AnnotationsSample/AnnotationsSample.proj -------------------------------------------------------------------------------- /samples/OData/AnnotationsSample/AnnotationsSample.query.pq: -------------------------------------------------------------------------------- 1 | AnnotationsSample.Contents() 2 | -------------------------------------------------------------------------------- /samples/OData/AnnotationsSample/AnnotationsSample16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/OData/AnnotationsSample/AnnotationsSample16.png -------------------------------------------------------------------------------- /samples/OData/AnnotationsSample/AnnotationsSample20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/OData/AnnotationsSample/AnnotationsSample20.png -------------------------------------------------------------------------------- /samples/OData/AnnotationsSample/AnnotationsSample24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/OData/AnnotationsSample/AnnotationsSample24.png -------------------------------------------------------------------------------- /samples/OData/AnnotationsSample/AnnotationsSample32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/OData/AnnotationsSample/AnnotationsSample32.png -------------------------------------------------------------------------------- /samples/OData/AnnotationsSample/AnnotationsSample40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/OData/AnnotationsSample/AnnotationsSample40.png -------------------------------------------------------------------------------- /samples/OData/AnnotationsSample/AnnotationsSample48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/OData/AnnotationsSample/AnnotationsSample48.png -------------------------------------------------------------------------------- /samples/OData/AnnotationsSample/AnnotationsSample64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/OData/AnnotationsSample/AnnotationsSample64.png -------------------------------------------------------------------------------- /samples/OData/AnnotationsSample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/OData/AnnotationsSample/README.md -------------------------------------------------------------------------------- /samples/OData/AnnotationsSample/resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/OData/AnnotationsSample/resources.resx -------------------------------------------------------------------------------- /samples/OpenApiSample/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/OpenApiSample/.vscode/settings.json -------------------------------------------------------------------------------- /samples/OpenApiSample/OpenApiSample.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/OpenApiSample/OpenApiSample.pq -------------------------------------------------------------------------------- /samples/OpenApiSample/OpenApiSample.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/OpenApiSample/OpenApiSample.proj -------------------------------------------------------------------------------- /samples/OpenApiSample/OpenApiSample.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/OpenApiSample/OpenApiSample.query.pq -------------------------------------------------------------------------------- /samples/OpenApiSample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/OpenApiSample/README.md -------------------------------------------------------------------------------- /samples/OpenApiSample/apisGuru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/OpenApiSample/apisGuru.json -------------------------------------------------------------------------------- /samples/TripPin/1-OData/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/1-OData/.vscode/settings.json -------------------------------------------------------------------------------- /samples/TripPin/1-OData/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/1-OData/README.md -------------------------------------------------------------------------------- /samples/TripPin/1-OData/TripPin.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/1-OData/TripPin.pq -------------------------------------------------------------------------------- /samples/TripPin/1-OData/TripPin.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/1-OData/TripPin.proj -------------------------------------------------------------------------------- /samples/TripPin/1-OData/TripPin.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/1-OData/TripPin.query.pq -------------------------------------------------------------------------------- /samples/TripPin/10-TableView1/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/10-TableView1/.vscode/settings.json -------------------------------------------------------------------------------- /samples/TripPin/10-TableView1/Diagnostics.pqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/10-TableView1/Diagnostics.pqm -------------------------------------------------------------------------------- /samples/TripPin/10-TableView1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/10-TableView1/README.md -------------------------------------------------------------------------------- /samples/TripPin/10-TableView1/Table.ChangeType.pqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/10-TableView1/Table.ChangeType.pqm -------------------------------------------------------------------------------- /samples/TripPin/10-TableView1/Table.GenerateByPage.pqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/10-TableView1/Table.GenerateByPage.pqm -------------------------------------------------------------------------------- /samples/TripPin/10-TableView1/Table.ToNavigationTable.pqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/10-TableView1/Table.ToNavigationTable.pqm -------------------------------------------------------------------------------- /samples/TripPin/10-TableView1/TripPin.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/10-TableView1/TripPin.pq -------------------------------------------------------------------------------- /samples/TripPin/10-TableView1/TripPin.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/10-TableView1/TripPin.proj -------------------------------------------------------------------------------- /samples/TripPin/10-TableView1/TripPin.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/10-TableView1/TripPin.query.pq -------------------------------------------------------------------------------- /samples/TripPin/2-Rest/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/2-Rest/.vscode/settings.json -------------------------------------------------------------------------------- /samples/TripPin/2-Rest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/2-Rest/README.md -------------------------------------------------------------------------------- /samples/TripPin/2-Rest/TripPin.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/2-Rest/TripPin.pq -------------------------------------------------------------------------------- /samples/TripPin/2-Rest/TripPin.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/2-Rest/TripPin.proj -------------------------------------------------------------------------------- /samples/TripPin/2-Rest/TripPin.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/2-Rest/TripPin.query.pq -------------------------------------------------------------------------------- /samples/TripPin/3-NavTables/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/3-NavTables/.vscode/settings.json -------------------------------------------------------------------------------- /samples/TripPin/3-NavTables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/3-NavTables/README.md -------------------------------------------------------------------------------- /samples/TripPin/3-NavTables/TripPin.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/3-NavTables/TripPin.pq -------------------------------------------------------------------------------- /samples/TripPin/3-NavTables/TripPin.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/3-NavTables/TripPin.proj -------------------------------------------------------------------------------- /samples/TripPin/3-NavTables/TripPin.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/3-NavTables/TripPin.query.pq -------------------------------------------------------------------------------- /samples/TripPin/4-Paths/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/4-Paths/.vscode/settings.json -------------------------------------------------------------------------------- /samples/TripPin/4-Paths/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/4-Paths/README.md -------------------------------------------------------------------------------- /samples/TripPin/4-Paths/TripPin.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/4-Paths/TripPin.pq -------------------------------------------------------------------------------- /samples/TripPin/4-Paths/TripPin.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/4-Paths/TripPin.proj -------------------------------------------------------------------------------- /samples/TripPin/4-Paths/TripPin.query.pq: -------------------------------------------------------------------------------- 1 | TripPin.Contents() 2 | -------------------------------------------------------------------------------- /samples/TripPin/5-Paging/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/5-Paging/.vscode/settings.json -------------------------------------------------------------------------------- /samples/TripPin/5-Paging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/5-Paging/README.md -------------------------------------------------------------------------------- /samples/TripPin/5-Paging/TripPin.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/5-Paging/TripPin.pq -------------------------------------------------------------------------------- /samples/TripPin/5-Paging/TripPin.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/5-Paging/TripPin.proj -------------------------------------------------------------------------------- /samples/TripPin/5-Paging/TripPin.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/5-Paging/TripPin.query.pq -------------------------------------------------------------------------------- /samples/TripPin/6-Schema/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/6-Schema/.vscode/settings.json -------------------------------------------------------------------------------- /samples/TripPin/6-Schema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/6-Schema/README.md -------------------------------------------------------------------------------- /samples/TripPin/6-Schema/TripPin.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/6-Schema/TripPin.pq -------------------------------------------------------------------------------- /samples/TripPin/6-Schema/TripPin.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/6-Schema/TripPin.proj -------------------------------------------------------------------------------- /samples/TripPin/6-Schema/TripPin.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/6-Schema/TripPin.query.pq -------------------------------------------------------------------------------- /samples/TripPin/7-AdvancedSchema/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/7-AdvancedSchema/.vscode/settings.json -------------------------------------------------------------------------------- /samples/TripPin/7-AdvancedSchema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/7-AdvancedSchema/README.md -------------------------------------------------------------------------------- /samples/TripPin/7-AdvancedSchema/Table.ChangeType.pqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/7-AdvancedSchema/Table.ChangeType.pqm -------------------------------------------------------------------------------- /samples/TripPin/7-AdvancedSchema/Table.GenerateByPage.pqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/7-AdvancedSchema/Table.GenerateByPage.pqm -------------------------------------------------------------------------------- /samples/TripPin/7-AdvancedSchema/Table.ToNavigationTable.pqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/7-AdvancedSchema/Table.ToNavigationTable.pqm -------------------------------------------------------------------------------- /samples/TripPin/7-AdvancedSchema/TripPin.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/7-AdvancedSchema/TripPin.pq -------------------------------------------------------------------------------- /samples/TripPin/7-AdvancedSchema/TripPin.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/7-AdvancedSchema/TripPin.proj -------------------------------------------------------------------------------- /samples/TripPin/7-AdvancedSchema/TripPin.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/7-AdvancedSchema/TripPin.query.pq -------------------------------------------------------------------------------- /samples/TripPin/8-Diagnostics/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/8-Diagnostics/.vscode/settings.json -------------------------------------------------------------------------------- /samples/TripPin/8-Diagnostics/Diagnostics.pqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/8-Diagnostics/Diagnostics.pqm -------------------------------------------------------------------------------- /samples/TripPin/8-Diagnostics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/8-Diagnostics/README.md -------------------------------------------------------------------------------- /samples/TripPin/8-Diagnostics/Table.ChangeType.pqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/8-Diagnostics/Table.ChangeType.pqm -------------------------------------------------------------------------------- /samples/TripPin/8-Diagnostics/Table.GenerateByPage.pqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/8-Diagnostics/Table.GenerateByPage.pqm -------------------------------------------------------------------------------- /samples/TripPin/8-Diagnostics/Table.ToNavigationTable.pqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/8-Diagnostics/Table.ToNavigationTable.pqm -------------------------------------------------------------------------------- /samples/TripPin/8-Diagnostics/TripPin.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/8-Diagnostics/TripPin.pq -------------------------------------------------------------------------------- /samples/TripPin/8-Diagnostics/TripPin.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/8-Diagnostics/TripPin.proj -------------------------------------------------------------------------------- /samples/TripPin/8-Diagnostics/TripPin.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/8-Diagnostics/TripPin.query.pq -------------------------------------------------------------------------------- /samples/TripPin/9-TestConnection/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/9-TestConnection/.vscode/settings.json -------------------------------------------------------------------------------- /samples/TripPin/9-TestConnection/Diagnostics.pqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/9-TestConnection/Diagnostics.pqm -------------------------------------------------------------------------------- /samples/TripPin/9-TestConnection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/9-TestConnection/README.md -------------------------------------------------------------------------------- /samples/TripPin/9-TestConnection/Table.ChangeType.pqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/9-TestConnection/Table.ChangeType.pqm -------------------------------------------------------------------------------- /samples/TripPin/9-TestConnection/Table.GenerateByPage.pqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/9-TestConnection/Table.GenerateByPage.pqm -------------------------------------------------------------------------------- /samples/TripPin/9-TestConnection/Table.ToNavigationTable.pqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/9-TestConnection/Table.ToNavigationTable.pqm -------------------------------------------------------------------------------- /samples/TripPin/9-TestConnection/TripPin.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/9-TestConnection/TripPin.pq -------------------------------------------------------------------------------- /samples/TripPin/9-TestConnection/TripPin.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/9-TestConnection/TripPin.proj -------------------------------------------------------------------------------- /samples/TripPin/9-TestConnection/TripPin.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/9-TestConnection/TripPin.query.pq -------------------------------------------------------------------------------- /samples/TripPin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/TripPin/README.md -------------------------------------------------------------------------------- /samples/UnitTesting/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/UnitTesting/.vscode/settings.json -------------------------------------------------------------------------------- /samples/UnitTesting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/UnitTesting/README.md -------------------------------------------------------------------------------- /samples/UnitTesting/UnitTesting.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/UnitTesting/UnitTesting.pq -------------------------------------------------------------------------------- /samples/UnitTesting/UnitTesting.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/UnitTesting/UnitTesting.proj -------------------------------------------------------------------------------- /samples/UnitTesting/UnitTesting.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/UnitTesting/UnitTesting.query.pq -------------------------------------------------------------------------------- /samples/dirs.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/dirs.proj -------------------------------------------------------------------------------- /samples/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/samples/global.json -------------------------------------------------------------------------------- /testframework/data/PQSDKTestData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/data/PQSDKTestData.md -------------------------------------------------------------------------------- /testframework/data/PQSDKTestFrameworkDataSchema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/data/PQSDKTestFrameworkDataSchema.sql -------------------------------------------------------------------------------- /testframework/data/nyc_taxi_tripdata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/data/nyc_taxi_tripdata.csv -------------------------------------------------------------------------------- /testframework/data/taxi+_zone_lookup.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/data/taxi+_zone_lookup.csv -------------------------------------------------------------------------------- /testframework/tests/ConnectorConfigs/generic/ParameterQueries/Generic.parameterquery.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/ConnectorConfigs/generic/ParameterQueries/Generic.parameterquery.pq -------------------------------------------------------------------------------- /testframework/tests/ConnectorConfigs/generic/Settings/SanitySettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/ConnectorConfigs/generic/Settings/SanitySettings.json -------------------------------------------------------------------------------- /testframework/tests/ConnectorConfigs/generic/Settings/StandardSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/ConnectorConfigs/generic/Settings/StandardSettings.json -------------------------------------------------------------------------------- /testframework/tests/PQSDKTestSuites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/PQSDKTestSuites.md -------------------------------------------------------------------------------- /testframework/tests/RunPQSDKTestSuites.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/RunPQSDKTestSuites.ps1 -------------------------------------------------------------------------------- /testframework/tests/RunPQSDKTestSuitesSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/RunPQSDKTestSuitesSettings.json -------------------------------------------------------------------------------- /testframework/tests/RunPQSDKTestSuitesSettingsTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/RunPQSDKTestSuitesSettingsTemplate.json -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Sanity/Taxi/AllTypes.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Sanity/Taxi/AllTypes.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Sanity/Taxi/AllTypes.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Sanity/Taxi/AllTypes.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Sanity/Taxi/AllTypesRowCount.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Sanity/Taxi/AllTypesRowCount.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Sanity/Taxi/AllTypesRowCount.query.pqout: -------------------------------------------------------------------------------- 1 | 10000 -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Sanity/Taxi/AllTypesSchema.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Sanity/Taxi/AllTypesSchema.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Sanity/Taxi/AllTypesSchema.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Sanity/Taxi/AllTypesSchema.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Sanity/Zone/AllTypesZone.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Sanity/Zone/AllTypesZone.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Sanity/Zone/AllTypesZone.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Sanity/Zone/AllTypesZone.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Sanity/Zone/AllTypesZoneRowCount.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Sanity/Zone/AllTypesZoneRowCount.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Sanity/Zone/AllTypesZoneRowCount.query.pqout: -------------------------------------------------------------------------------- 1 | 265 -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Sanity/Zone/AllTypesZoneSchema.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Sanity/Zone/AllTypesZoneSchema.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Sanity/Zone/AllTypesZoneSchema.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Sanity/Zone/AllTypesZoneSchema.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Datatypes/AddColumnSpecialCharacters.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Datatypes/AddColumnSpecialCharacters.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Datatypes/AddColumnSpecialCharacters.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Datatypes/AddColumnSpecialCharacters.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Datatypes/AllTypesNativeQuery.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Datatypes/AllTypesNativeQuery.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Datatypes/AlltypesNativeQuery.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Datatypes/AlltypesNativeQuery.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Datatypes/Cast.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Datatypes/Cast.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Datatypes/Cast.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Datatypes/Cast.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Datatypes/FirstEntry.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Datatypes/FirstEntry.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Datatypes/FirstEntry.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Datatypes/FirstEntry.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Datatypes/IfBoolean.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Datatypes/IfBoolean.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Datatypes/IfBoolean.query.pqout: -------------------------------------------------------------------------------- 1 | [ Column = false ] -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Datatypes/MultiplyColumnsOfDifferenttypes.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Datatypes/MultiplyColumnsOfDifferenttypes.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Datatypes/MultiplyColumnsOfDifferenttypes.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Datatypes/MultiplyColumnsOfDifferenttypes.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Datatypes/NullableEquals.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Datatypes/NullableEquals.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Datatypes/NullableEquals.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Datatypes/NullableEquals.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Datatypes/SelectRowsBoolColumn.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Datatypes/SelectRowsBoolColumn.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Datatypes/SelectRowsBoolColumn.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Datatypes/SelectRowsBoolColumn.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Datatypes/SkipTake.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Datatypes/SkipTake.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Datatypes/SkipTake.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Datatypes/SkipTake.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Datatypes/Sort.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Datatypes/Sort.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Datatypes/Sort.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Datatypes/Sort.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Datatypes/SortDatetime.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Datatypes/SortDatetime.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Datatypes/SortDatetime.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Datatypes/SortDatetime.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Datatypes/SortTimestamp.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Datatypes/SortTimestamp.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Datatypes/SortTimestamp.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Datatypes/SortTimestamp.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Date/DateFilter_QueryFolding.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Date/DateFilter_QueryFolding.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Date/DateFilter_QueryFolding.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Date/DateFilter_QueryFolding.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Date/DateFunctions_over_Date_1.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Date/DateFunctions_over_Date_1.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Date/DateFunctions_over_Date_1.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Date/DateFunctions_over_Date_1.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Date/DateFunctions_over_Date_2.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Date/DateFunctions_over_Date_2.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Date/DateFunctions_over_Date_2.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Date/DateFunctions_over_Date_2.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Date/DateFunctions_over_Date_3.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Date/DateFunctions_over_Date_3.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Date/DateFunctions_over_Date_3.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Date/DateFunctions_over_Date_3.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Date/DateFunctions_over_Datetime_1.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Date/DateFunctions_over_Datetime_1.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Date/DateFunctions_over_Datetime_1.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Date/DateFunctions_over_Datetime_1.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Date/DateFunctions_over_Datetime_2a.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Date/DateFunctions_over_Datetime_2a.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Date/DateFunctions_over_Datetime_2a.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Date/DateFunctions_over_Datetime_2a.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Date/DateFunctions_over_Datetime_2b.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Date/DateFunctions_over_Datetime_2b.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Date/DateFunctions_over_Datetime_2b.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Date/DateFunctions_over_Datetime_2b.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Date/DateFunctions_over_Datetime_3.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Date/DateFunctions_over_Datetime_3.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Date/DateFunctions_over_Datetime_3.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Date/DateFunctions_over_Datetime_3.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Date/DateFunctions_over_Datetime_4.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Date/DateFunctions_over_Datetime_4.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Date/DateFunctions_over_Datetime_4.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Date/DateFunctions_over_Datetime_4.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Date/DateTimeAddDuration.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Date/DateTimeAddDuration.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Date/DateTimeAddDuration.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Date/DateTimeAddDuration.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Date/DateTimeArithmetic.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Date/DateTimeArithmetic.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Date/DateTimeArithmetic.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Date/DateTimeArithmetic.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/FirstN/FirstNGroup.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/FirstN/FirstNGroup.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/FirstN/FirstNGroup.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/FirstN/FirstNGroup.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/FirstN/FirstNGroupSort.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/FirstN/FirstNGroupSort.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/FirstN/FirstNGroupSort.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/FirstN/FirstNGroupSort.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/FirstN/FirstNSort.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/FirstN/FirstNSort.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/FirstN/FirstNSort.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/FirstN/FirstNSort.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/FirstN/FirstNSortGroup.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/FirstN/FirstNSortGroup.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/FirstN/FirstNSortGroup.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/FirstN/FirstNSortGroup.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Functions/Count.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Functions/Count.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Functions/Count.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Functions/Count.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Functions/FoldListAverage.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Functions/FoldListAverage.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Functions/FoldListAverage.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Functions/FoldListAverage.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Functions/FoldListCount.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Functions/FoldListCount.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Functions/FoldListCount.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Functions/FoldListCount.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Functions/FoldListFirst.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Functions/FoldListFirst.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Functions/FoldListFirst.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Functions/FoldListFirst.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Functions/FoldListFirstNGroup.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Functions/FoldListFirstNGroup.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Functions/FoldListFirstNGroup.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Functions/FoldListFirstNGroup.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Functions/FoldListMax.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Functions/FoldListMax.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Functions/FoldListMax.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Functions/FoldListMax.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Functions/FoldListMin.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Functions/FoldListMin.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Functions/FoldListMin.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Functions/FoldListMin.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Functions/FoldListNotNullCount.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Functions/FoldListNotNullCount.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Functions/FoldListNotNullCount.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Functions/FoldListNotNullCount.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Functions/FoldListStandardDeviation.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Functions/FoldListStandardDeviation.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Functions/FoldListStandardDeviation.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Functions/FoldListStandardDeviation.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Functions/FoldListSum.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Functions/FoldListSum.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Functions/FoldListSum.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Functions/FoldListSum.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Functions/FoldTableRowCount.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Functions/FoldTableRowCount.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Functions/FoldTableRowCount.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Functions/FoldTableRowCount.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Functions/FoldsDateTimeComparison.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Functions/FoldsDateTimeComparison.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Functions/FoldsDateTimeComparison.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Functions/FoldsDateTimeComparison.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Functions/FoldsTextFromDateTime.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Functions/FoldsTextFromDateTime.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Functions/FoldsTextFromDateTime.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Functions/FoldsTextFromDateTime.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Join/TableJoin_1.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Join/TableJoin_1.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Join/TableJoin_1.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Join/TableJoin_1.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Join/TableJoin_2.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Join/TableJoin_2.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Join/TableJoin_2.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Join/TableJoin_2.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Join/TableJoin_3.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Join/TableJoin_3.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Join/TableJoin_3.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Join/TableJoin_3.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Join/TableJoin_4.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Join/TableJoin_4.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Join/TableJoin_4.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Join/TableJoin_4.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Math/Arithmetic.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Math/Arithmetic.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Math/Arithmetic.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Math/Arithmetic.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Math/NumberFunctions.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Math/NumberFunctions.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Math/NumberFunctions.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Math/NumberFunctions.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Math/Sum.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Math/Sum.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Math/Sum.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Math/Sum.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Metadata/CreateNavigationPropertiesOption.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Metadata/CreateNavigationPropertiesOption.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Metadata/CreateNavigationPropertiesOption.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Metadata/CreateNavigationPropertiesOption.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Metadata/NavigationMetadata.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Metadata/NavigationMetadata.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Metadata/NavigationMetadata.query.pqout: -------------------------------------------------------------------------------- 1 | [ ] -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Text/AddColumnWithTextStartsWith.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Text/AddColumnWithTextStartsWith.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Text/AddColumnWithTextStartsWith.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Text/AddColumnWithTextStartsWith.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Text/ConcatOverflow.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Text/ConcatOverflow.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Text/ConcatOverflow.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Text/ConcatOverflow.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Text/SelectRowsStringColumn.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Text/SelectRowsStringColumn.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Text/SelectRowsStringColumn.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Text/SelectRowsStringColumn.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Text/StringLiteral.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Text/StringLiteral.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Text/StringLiteral.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Text/StringLiteral.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Text/TextFromDecimal.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Text/TextFromDecimal.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Text/TextFromDecimal.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Text/TextFromDecimal.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Text/TextFunctions.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Text/TextFunctions.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Text/TextFunctions.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Text/TextFunctions.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Time/TimeFunctions_EndOfHour.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Time/TimeFunctions_EndOfHour.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Time/TimeFunctions_EndOfHour.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Time/TimeFunctions_EndOfHour.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Time/TimeFunctions_Hour.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Time/TimeFunctions_Hour.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Time/TimeFunctions_Hour.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Time/TimeFunctions_Hour.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Time/TimeFunctions_Minute.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Time/TimeFunctions_Minute.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Time/TimeFunctions_Minute.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Time/TimeFunctions_Minute.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Time/TimeFunctions_Second.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Time/TimeFunctions_Second.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Time/TimeFunctions_Second.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Time/TimeFunctions_Second.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Time/TimeFunctions_StartOfHour.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Time/TimeFunctions_StartOfHour.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Time/TimeFunctions_StartOfHour.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Time/TimeFunctions_StartOfHour.query.pqout -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Time/TimeFunctions_TimeSecond.query.pq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Time/TimeFunctions_TimeSecond.query.pq -------------------------------------------------------------------------------- /testframework/tests/TestSuites/Standard/Time/TimeFunctions_TimeSecond.query.pqout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DataConnectors/HEAD/testframework/tests/TestSuites/Standard/Time/TimeFunctions_TimeSecond.query.pqout --------------------------------------------------------------------------------