Comments - Connect Storage Engine
Content reproduced on this site is the property of its respective owners,
and this content is not reviewed in advance by MariaDB. The views, information and opinions
expressed by this content do not necessarily represent those of MariaDB or any other party.
Thanks a lot for your inputs..
Of course, you can do it using the TBL table type, for instance:
CREATE TABLE t1 ( a INT NOT NULL, message CHAR(10) NOT NULL) ENGINE=connect TABLE_TYPE=XML;;
CREATE TABLE t2 ( a INT NOT NULL, message CHAR(10) NOT NULL) ENGINE=connect TABLE_TYPE=BIN;
CREATE TABLE t3 ( a INT NOT NULL, message CHAR(10) NOT NULL) ENGINE=connect TABLE_TYPE=CSV;
CREATE TABLE total ( a TINYINT NOT NULL, message CHAR(20) NOT NULL) engine=CONNECT table_type=TBL table_list='t1,t2,t3';