Repository: incubator-sentry Updated Branches: refs/heads/master 58be76016 -> d1d2fd3dc
SENTRY-446: Missing comma in mysql 1.5 script (Sravya Tirukkovalur via Prasad Mujumdar) Project: http://git-wip-us.apache.org/repos/asf/incubator-sentry/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-sentry/commit/d1d2fd3d Tree: http://git-wip-us.apache.org/repos/asf/incubator-sentry/tree/d1d2fd3d Diff: http://git-wip-us.apache.org/repos/asf/incubator-sentry/diff/d1d2fd3d Branch: refs/heads/master Commit: d1d2fd3dcb88c160803cecb02de104618838585d Parents: 58be760 Author: Prasad Mujumdar <[email protected]> Authored: Wed Sep 17 11:50:02 2014 -0700 Committer: Prasad Mujumdar <[email protected]> Committed: Wed Sep 17 11:50:02 2014 -0700 ---------------------------------------------------------------------- .../sentry-provider-db/src/main/resources/sentry-mysql-1.5.0.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-sentry/blob/d1d2fd3d/sentry-provider/sentry-provider-db/src/main/resources/sentry-mysql-1.5.0.sql ---------------------------------------------------------------------- diff --git a/sentry-provider/sentry-provider-db/src/main/resources/sentry-mysql-1.5.0.sql b/sentry-provider/sentry-provider-db/src/main/resources/sentry-mysql-1.5.0.sql index 803b6a8..bc0d0d8 100644 --- a/sentry-provider/sentry-provider-db/src/main/resources/sentry-mysql-1.5.0.sql +++ b/sentry-provider/sentry-provider-db/src/main/resources/sentry-mysql-1.5.0.sql @@ -33,7 +33,7 @@ CREATE TABLE `SENTRY_DB_PRIVILEGE` ( `TABLE_NAME` VARCHAR(128) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, `URI` VARCHAR(4000) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, `ACTION` VARCHAR(128) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, - `CREATE_TIME` BIGINT NOT NULL + `CREATE_TIME` BIGINT NOT NULL, `WITH_GRANT_OPTION` CHAR(1) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
