Writing My Own Extension For Village SQL Part II
Writing my own extension for Village SQL has been a learning experience. Extensions are a big part of the PostgreSQL ecosystem, and the idea of bringing them to the MySQL ecosystem is a source of hope for the 'most popular database'. The Good News I was able to build my extension, vsql_cube, and get it into the server! Yeah! mysql> select * from information_schema.extensions; +----------------+-------------------+ | EXTENSION_NAME | EXTENSION_VERSION | +----------------+-------------------+ | vsql_complex | 0.0.1 | | vsql_cube | 1.0.0 | | vsql_simple | 0.0.1 | +----------------+-------------------+ 3 rows in set (0.01 sec) The Bad News My extension does not work. mysql> select vsql_simple(5); ERROR 1305 (42000): FUNCTION demo.vsql_simple does not ex...