You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2018/05/18 14:42:51 UTC

incubator-airflow git commit: [AIRFLOW-2484] Remove duplicate key in MySQL to GCS Op

Repository: incubator-airflow
Updated Branches:
  refs/heads/master f5115b7e6 -> 08c6c870f


[AIRFLOW-2484] Remove duplicate key in MySQL to GCS Op

- Remove duplicate `FIELD_TYPE.INT24: 'INTEGER'`
key from MySQL to GCS Operator

Closes #3376 from kaxil/AIRFLOW-2484


Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/08c6c870
Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/08c6c870
Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/08c6c870

Branch: refs/heads/master
Commit: 08c6c870f87f354ba6a754d828fef4b13ce7e444
Parents: f5115b7
Author: Kaxil Naik <ka...@gmail.com>
Authored: Fri May 18 15:42:28 2018 +0100
Committer: Kaxil Naik <ka...@apache.org>
Committed: Fri May 18 15:42:28 2018 +0100

----------------------------------------------------------------------
 airflow/contrib/operators/mysql_to_gcs.py | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/08c6c870/airflow/contrib/operators/mysql_to_gcs.py
----------------------------------------------------------------------
diff --git a/airflow/contrib/operators/mysql_to_gcs.py b/airflow/contrib/operators/mysql_to_gcs.py
index bd3efdb..bb52829 100644
--- a/airflow/contrib/operators/mysql_to_gcs.py
+++ b/airflow/contrib/operators/mysql_to_gcs.py
@@ -279,7 +279,6 @@ class MySqlToGoogleCloudStorageOperator(BaseOperator):
             FIELD_TYPE.NEWDECIMAL: 'FLOAT',
             FIELD_TYPE.DOUBLE: 'FLOAT',
             FIELD_TYPE.FLOAT: 'FLOAT',
-            FIELD_TYPE.INT24: 'INTEGER',
             FIELD_TYPE.LONG: 'INTEGER',
             FIELD_TYPE.LONGLONG: 'INTEGER',
             FIELD_TYPE.SHORT: 'INTEGER',