Skip to content
#

etl

Here are 1,327 public repositories matching this topic...

williamlee1982
williamlee1982 commented Jan 7, 2021

seems there is a bug in DB2LUWSchemaProvider class, when loading columns of table, it didn't trim the tailing space of the schema name, causes linq query didn't return any column.

the problem is in the GetColumns method here:

var tableId     = dataConnection.Connection.Database + "." + rd.GetString(0) + "." + rd.GetString(1);

and it should be:

var tableId     = dataConnect
panther
tatehanawalt
tatehanawalt commented Jan 14, 2021

Overview:

Developers may run mage commands against multiple different versions of panther.

The mage logs do not specify the version of panther.

If we have the git commit we can be sure of the command context.

Example:

Specifically I am running integration tests for release testing. I pulled the repo and achieved successful integration test results. Pull resulted in updates to

ChristopheDuong
ChristopheDuong commented Dec 4, 2020

Tell us about the problem you're trying to solve

When specifying a Dataset_id, the Google UI often includes the project_id in its naming like this: project_id:dataset_id

Describe the solution you’d like

In the BigQuery destination code, we could accept both syntax:

  • project_id:dataset_id
  • dataset_id

So it's smoother for the end user whether project_id is specified or not?

Improve this page

Add a description, image, and links to the etl topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the etl topic, visit your repo's landing page and select "manage topics."

Learn more