[ANN] Mroonga 6.09 - Fast fulltext search for all languages on MySQL
Kentaro Hayashi <[email protected]>
| Newsgroups | gmane.comp.db.mysql.general |
|---|---|
| Message-ID | <[email protected]> |
Hi,
Mroonga 6.09 has been released!
Mroonga is a MySQL storage engine that supports fast fulltext search
and geolocation search. It is CJK ready. It uses Groonga as a storage
and fulltext search engine.
Document:
http://mroonga.org/docs/
How to install: Install Guide
http://mroonga.org/docs/install.html
How to upgrade: Upgrade Guide
http://mroonga.org/docs/upgrade.html
Blog:
http://mroonga.org/en/blog/2016/09/29/mroonga-6.09.html
Changes:
http://mroonga.org/docs/news.html#release-6.09
Here is the topic in this release.
* Supported nonexistent reference insert check for FOREIGN KEY
## Supported nonexistent reference insert check for FOREIGN KEY
In the previous versions, there is no support about reference insert
check for FOREIGN KEY.
create table HOGES(
ID INT PRIMARY KEY AUTO_INCREMENT,
HOGE VARCHAR(255)
) ENGINE=Mroonga;
create table FOODS(
ID INT PRIMARY KEY AUTO_INCREMENT,
HOGE_ID INT(10),
FOO VARCHAR(255),
foreign key(HOGE_ID) references HOGES(ID)
) ENGINE=Mroonga ;
so, invalid data was inserted without error if you use above schema.
Note that FOREIGN KEY check doesn't work for old version of MySQL and
folks such as MySQL 5.5 or MariaDB 5.5, and FOREIGN KEY check for
INSERT/DELETE is not supported yet. (it will be supported in the
future release!)
--
Kentaro Hayashi <[email protected]>
signature.asc
(application/pgp-signature, 801 B)
-----BEGIN PGP SIGNATURE----- iQIcBAEBCAAGBQJX7gJ+AAoJEPf7dcVm7SDjiRkQANjnGKJdIcpG3+2+ydLMBCwc ucrDa+yVg2/2K+LbqtoSo1SPTyp8VWMs9XE1DsybeIoVQ58KYjDilJ6e//6xQvV/ 6cgqms1vtmIAfjPvQsn91ey5n1Ljw+w2+EVQtHdaxqYAsofRbUtvVnhggSa0nbN/ kO3KhYrGfxEvwhUBECaRwZfgKKqyMHt/dUMJtruVcimejIL6KP9dYFzNQjI/1HQJ xJn2OjfN7eSshGGl/ujf3bO8KFkaAedeypp1/6pN1FxJXMyJi4Q3coEKudb6wv2W b8zODZBKolZth2Yf2UIOiE+1HVQ3KqyI/MfUwl05BLAkKYad8Bze6M9iGcztD/oy L3qj4E1p+e6Q3abo3wvnOQ+sGZ9BajnOrt3iSpU9hTLoHDpp2PFzoTHcfHzsGhpc S32fy+HLLyC8mu1pchNME+yxGyGTDRts1cWoZFcvZbWfgDWUSIQPLO8XQNxQFOw2 Wuxy6lBZUrseNySK6RXlwMFB1R5ZmDXnTLAuLgnQy/fFEABPzKIgSyAts5960cXR ANY0lsuN9v1K+g5barHYMyEXInE21MDC3VaFSI2tfScCR8d+Oa61lO1TqMLh+mTC FqGkOVQA/BtPngNEfqDDi/R3+pS22lKl8LSIIy4sOZH1grDK/Bd2H1R8ZLqKxpN/ 1QxwUJBL4i0xqZlkWCxi =YoU8 -----END PGP SIGNATURE-----