Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why is accessible a reserved word in mysql?

Tags:

mysql

Why was accessible added as a reserved word to mysql and what is it used for? Is there documentation for it because I cannot find it.

like image 574
matthewdaniel Avatar asked May 03 '11 14:05

matthewdaniel


1 Answers

From what i gathered , it looks like ACCESSIBLE, READ-ONLY and READ-WRITE are access modes from TABLESPACEs. But there is no documentation.

If you want to know how and when to use it , you will have to read Oracle's documentation.

After searching the mysql 5.1 (when they were introduced) source and trying out some keywords in google, i managed to come across this commit. From there a bot of digging in related variables/types in source, i found about request for adding TABLESPACE's in 5.0 > documentation in 5.1 > usage examples in Oracle docs.

like image 99
tereško Avatar answered Sep 22 '22 06:09

tereško