[Bps-public-commit] dbix-searchbuilder branch, master, updated. 1.63-2-g5d77a28
Ruslan Zakirov
ruz at bestpractical.com
Sun Feb 3 07:02:20 EST 2013
The branch, master has been updated
via 5d77a2862f2dd94d073454599e3599cf65542693 (commit)
from 8333019c15a4afa49475f76f1ecee9b895e7496e (commit)
Summary of changes:
t/03transactions.t | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
- Log -----------------------------------------------------------------
commit 5d77a2862f2dd94d073454599e3599cf65542693
Author: Ruslan Zakirov <ruz at bestpractical.com>
Date: Sun Feb 3 16:00:34 2013 +0400
TYPE=InnoDB is deprecated
In new mysql versions this throws error. Use ENGINE
instead, it's supported for ages
diff --git a/t/03transactions.t b/t/03transactions.t
index 2a5818c..c0a486d 100644
--- a/t/03transactions.t
+++ b/t/03transactions.t
@@ -144,7 +144,7 @@ CREATE TEMPORARY TABLE Address (
Name varchar(36),
Phone varchar(18),
EmployeeId int(8),
- PRIMARY KEY (id)) TYPE='InnoDB'
+ PRIMARY KEY (id)) ENGINE='InnoDB'
EOF
}
-----------------------------------------------------------------------
More information about the Bps-public-commit
mailing list