summaryrefslogtreecommitdiff
path: root/storage/connect/mysql-test/connect/r/mysql.result
Commit message (Collapse)AuthorAgeFilesLines
* MDEV-28489 CONNECT used incorrect CHAR lengthAndrew Hutchings2022-11-111-0/+38
| | | | | | | CONNECT engine was using dividing UTF8 columns by 3 to get the length, but in reality it did need the byte length. This fixes MDEV-26722 too.
* MDEV-28533: CONNECT engine does not quote columns involved in WHERE clause ↵Anel2022-09-261-0/+22
| | | | (#2263)
* MDEV-29446 Change SHOW CREATE TABLE to display default collationAlexander Barkov2022-09-121-21/+21
|
* MDEV-27766: connect engine; INSERT ignore option, was ignoredMathew Heard2022-06-101-0/+12
| | | | | | | | | | Test prior to this change: CURRENT_TEST: connect.mysql mysqltest: At line 485: query 'INSERT IGNORE INTO t3 VALUES (5),(10),(30)' failed: ER_GET_ERRMSG (1296): Got error 122 '(1062) Duplicate entry '10' for key 'PRIMARY' [INSERT INTO `t1` (`a`) VALUES (10)]' from CONNECT So the ignore table option wasn't getting passed to the remove server. Closes #2008
* - Fix gcc compile error: crosses initialization of ‘const char* drv’Olivier Bertrand2017-08-091-1/+1
| | | | | | | | | | | modified: storage/connect/mongo.cpp - Fix test failures modified: storage/connect/mysql-test/connect/r/mysql.result modified: storage/connect/mysql-test/connect/r/mysql_new.result modified: storage/connect/mysql-test/connect/r/tbl_thread.result modified: storage/connect/mysql-test/connect/t/tbl_thread.test modified: storage/connect/tabjson.cpp
* - Fix failing tests. part_file.test failure was due to a new alter flag thatOlivier Bertrand2014-08-051-2/+0
| | | | | | | | | were not taken in acount in check_if_supported_inplace_alter. mysql.test failure is strange, the suppressed warning should not be made anyway. modified: storage/connect/ha_connect.cc storage/connect/mysql-test/connect/r/mysql.result
* MDEV-6085 ALTER TABLE looses the connection stringSergei Golubchik2014-05-011-0/+23
|
* - Fix errors and warnings occuring in --embedded testsOlivier Bertrand2013-12-111-0/+35
| | | | | | | | | | | modified: storage/connect/connect.cc storage/connect/ha_connect.cc storage/connect/mysql-test/connect/r/mysql.result storage/connect/mysql-test/connect/r/unsigned.result storage/connect/mysql-test/connect/t/mysql.test storage/connect/mysql-test/connect/t/unsigned.test
* - Move all enum AMT definitions in one place (plgdbsem.h)Olivier Bertrand2013-11-061-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | modified: storage/connect/filamtxt.h storage/connect/filamzip.h storage/connect/myconn.h storage/connect/plgdbsem.h storage/connect/taboccur.h storage/connect/tabutil.h storage/connect/tabxcl.h - Add the possibility to execute several commands in one query of an EXECSRC tables (using ...where command in (cmd list);) modified: storage/connect/ha_connect.cc storage/connect/odbconn.cpp storage/connect/odbconn.h storage/connect/tabmysql.cpp storage/connect/tabmysql.h storage/connect/tabodbc.cpp storage/connect/tabodbc.h storage/connect/tabtbl.cpp storage/connect/tabwmi.cpp storage/connect/xtable.h - Enhance retrieving column definitions in discovery: From SRCDEF adding LIMIT 0 to the executed query Testing if type, length, and precision are compatible Making the distinction between CHAR and VARCHAR modified: storage/connect/ha_connect.cc storage/connect/myconn.cpp storage/connect/mysql-test/connect/r/mysql.result storage/connect/mysql-test/connect/r/odbc_sqlite3.result storage/connect/mysql-test/connect/r/odbc_sqlite3_grant.result storage/connect/myutil.h storage/connect/myutil.h storage/connect/odbconn.cpp storage/connect/value.h
* MDEV-4877 mysqldump dumps all data from a connect tableAlexander Barkov2013-10-291-0/+21
|
* - Restore test results to the discovery old way.Olivier Bertrand2013-07-251-8/+8
| | | | | | | | | | | (when using NEW_WAY, show create table displays table types unquoted) modified: storage/connect/mysql-test/connect/r/mysql.result storage/connect/mysql-test/connect/r/odbc_sqlite3.result storage/connect/mysql-test/connect/r/odbc_sqlite3_grant.result storage/connect/mysql-test/connect/r/odbc_xls.result
* - Restore tests to handle the cases that were giving Valgrind warnings.Olivier Bertrand2013-07-251-11/+36
| | | | | | | | | | | | | | modified: storage/connect/mysql-test/connect/r/mysql.result storage/connect/mysql-test/connect/r/odbc_sqlite3.result storage/connect/mysql-test/connect/r/odbc_sqlite3_grant.result storage/connect/mysql-test/connect/r/odbc_xls.result storage/connect/mysql-test/connect/r/pivot.result storage/connect/mysql-test/connect/r/xcol.result storage/connect/mysql-test/connect/t/mysql.test storage/connect/mysql-test/connect/t/pivot.test storage/connect/mysql-test/connect/t/xcol.test
* - Fix "Result content mismatch"Olivier Bertrand2013-07-121-1/+1
| | | | | | | modified: storage/connect/mysql-test/connect/r/mysql.result storage/connect/mysql-test/connect/t/mysql.test
* - Applying temporary restrictions to test files.Olivier Bertrand2013-07-111-45/+22
| | | | | | | | | | | | | | | | | This is to suppress some valgrind warnings and consist principally in: 1 - Not supporting connect_assisted_discovery to all PROXY based table types 2 - Not supporting the PIVOT table type This temporarily until the valgrind errors/warnings are fixed modified: storage/connect/ha_connect.cc storage/connect/mysql-test/connect/r/mysql.result storage/connect/mysql-test/connect/r/pivot.result storage/connect/mysql-test/connect/r/xcol.result storage/connect/mysql-test/connect/t/mysql.test storage/connect/mysql-test/connect/t/pivot.test storage/connect/mysql-test/connect/t/xcol.test
* "mtr --suite=connect --embedded" tests did not work for two reasons:Alexander Barkov2013-05-211-63/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. The Connect engine code assumed that mysql_home_directory is always "./", which is not the fact in case of embedded server. Fixing the routines creating file names to add the mysql_home_directory prefix. 2. FILE privilege is not checked in embedded server. Moving FILE related tests into separate files. Skipping the FILE related tests when running with --embedded. added: storage/connect/mysql-test/connect/r/grant.result storage/connect/mysql-test/connect/r/ini_grant.result storage/connect/mysql-test/connect/r/mysql_grant.result storage/connect/mysql-test/connect/r/xml_grant.result storage/connect/mysql-test/connect/t/grant.test storage/connect/mysql-test/connect/t/ini_grant.test storage/connect/mysql-test/connect/t/mysql_grant.test storage/connect/mysql-test/connect/t/xml_grant.test modified: storage/connect/global.h storage/connect/ha_connect.cc storage/connect/mycat.cc storage/connect/mysql-test/connect/r/bin.result storage/connect/mysql-test/connect/r/csv.result storage/connect/mysql-test/connect/r/dbf.result storage/connect/mysql-test/connect/r/dir.result storage/connect/mysql-test/connect/r/fix.result storage/connect/mysql-test/connect/r/ini.result storage/connect/mysql-test/connect/r/mysql.result storage/connect/mysql-test/connect/r/vec.result storage/connect/mysql-test/connect/r/xml.result storage/connect/mysql-test/connect/t/bin.test storage/connect/mysql-test/connect/t/csv.test storage/connect/mysql-test/connect/t/dbf.test storage/connect/mysql-test/connect/t/dir.test storage/connect/mysql-test/connect/t/fix.test storage/connect/mysql-test/connect/t/ini.test storage/connect/mysql-test/connect/t/mysql.test storage/connect/mysql-test/connect/t/vec.test storage/connect/mysql-test/connect/t/xml.test storage/connect/plgdbsem.h storage/connect/plugutil.c
* merge with maria-10.0-connectSergei Golubchik2013-04-191-2/+2
|
* CONNECT engine fixes after 10.0 merge.Sergei Golubchik2013-04-191-8/+8
| | | | Adaptation to new API, small simplifications and bug fixes
* small mtr cleanupSergei Golubchik2013-04-191-0/+280
and move the connect suite into storage/connect/