mashirali commented on issue #19342:
URL: https://github.com/apache/airflow/issues/19342#issuecomment-1029418167


   airflow db shell
   mysql> drop database airflow;
   mysql> create database airflow;
   mysql> grant all on airflow.* to 'airflow'@'localhost' identified by 
'123456!a';
   mysql> flush privileges;
   mysql> grant all on airflow.* to 'airflow'@'%' identified by '123456!a';
   mysql> flush privileges;
   
   mysql> show global variables like '%timestamp%';
   +---------------------------------+-------+
   | Variable_name                   | Value |
   +---------------------------------+-------+
   | explicit_defaults_for_timestamp | OFF   |
   | log_timestamps                  | UTC   |
   +---------------------------------+-------+
   2 rows in set (0.00 sec)
   
   mysql> set global explicit_defaults_for_timestamp =1;
   Query OK, 0 rows affected (0.00 sec)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to