- 17 Dec, 2013 8 commits
-
-
Alexander Barkov authored
-
Alexander Barkov authored
-
Alexander Barkov authored
-
Alexander Barkov authored
-
Alexander Barkov authored
Fixed a wrong assertion.
-
Elena Stepanova authored
Also known as MySQL#70047 and BUG#17316314 (srv_buf_size not declared). The workaround is taken from MySQL 5.6 tree: BUG#17316314 - SRV_BUF_SIZE NOT DECLARED Temporary fix. Disabling FALLOC_FL_PUNCH_HOLE for now
-
Alexander Barkov authored
-
Alexander Barkov authored
backporting from the main 10.0 modified: mysql-test/r/func_like.result mysql-test/t/func_like.test sql/item_cmpfunc.cc
-
- 16 Dec, 2013 8 commits
-
-
Alexander Barkov authored
Fixed.
-
Olivier Bertrand authored
modified: storage/connect/valblk.cpp - Fix compiler warning in ODBConn::GetCatInfo modified: storage/connect/odbconn.cpp
-
Sergei Golubchik authored
-
Sergey Vojtovich authored
storage/oqgraph into 10.0 - since oqgraph depends on Judy, move it to a separate package (DEB)
-
Sergei Golubchik authored
-
Sergey Vojtovich authored
storage/oqgraph into 10.0 - fixed sys_vars.all_vars (added oqgraph_allow_create_integer_latch_basic.test) - since oqgraph depends on Judy, move it to a separate package
-
Sergey Vojtovich authored
- restore find_ticket() private status, declare friend function instead - added metadata_lock_info to DEFAULT_SUITES
-
Olivier Bertrand authored
processing that takes care of: - Drastically reduce the amount of storge needed to process them. - Handle longjmp's. - Makes the line limit an opion (MAXRES) - Schema can also be specified with the DBNAME option. - Issue warnings on fetch errors or when result lines have been limited. - Change some column names to reflect ODBC version 3 standard. The documentation have been updated accordingly modified: storage/connect/filamdbf.cpp storage/connect/ha_connect.cc storage/connect/myconn.cpp storage/connect/mysql-test/connect/r/odbc.result storage/connect/mysql-test/connect/r/odbc_postgresql.result storage/connect/mysql-test/connect/r/odbc_sqlite3.result storage/connect/mysql-test/connect/r/odbc_xls.result storage/connect/mysql-test/connect/r/xml.result storage/connect/mysql-test/connect/t/odbc_postgresql.test storage/connect/odbccat.h storage/connect/odbconn.cpp storage/connect/odbconn.h storage/connect/plgdbsem.h storage/connect/plgdbutl.cpp storage/connect/rcmsg.c storage/connect/tabfmt.cpp storage/connect/table.cpp storage/connect/tabodbc.cpp storage/connect/tabodbc.h storage/connect/tabutil.cpp storage/connect/tabwmi.cpp storage/connect/user_connect.cc storage/connect/valblk.cpp storage/connect/valblk.h storage/connect/value.cpp
-
- 15 Dec, 2013 5 commits
-
-
Alexander Barkov authored
-
Sergei Golubchik authored
-
Sergei Golubchik authored
-
Sergei Golubchik authored
This test needs at least 320M for tokudb-max-lock-memory. Normally tokudb-max-lock-memory is auto-sized to be 1/16th of the available RAM size, and many our test VMs have 4G of RAM.
-
Igor Babaev authored
Do not calculate selectivity of conditions for the tables of the information schema.
-
- 14 Dec, 2013 1 commit
-
-
Alexander Barkov authored
-
- 13 Dec, 2013 4 commits
-
-
Sergei Golubchik authored
-
Alexander Barkov authored
The problem reported as MDEV-5444.
-
Sergei Golubchik authored
-
Sergey Vojtovich authored
- include metadata_lock_info plugin into debian packages - ignore metadata_lock_info plugin in mysqld--help test - let test suite run with built-in metadata_lock_info plugin
-
- 12 Dec, 2013 7 commits
-
-
Igor Babaev authored
The fix for bug #27937 was incomplete: it did not handle correctly the queries containing UNION with global ORDER BY in subselects.
-
Sergei Golubchik authored
(better to have an address in the output than ??:0)
-
Sergei Golubchik authored
(PLUGIN_VAR_MEMALLOC is 0x8000 and cannot be saved in a char as such)"
-
-
Alexander Barkov authored
the system locale (on Linux) and code pages (on Windows).
-
Sergei Golubchik authored
-
Olivier Bertrand authored
modified: storage/connect/mysql-test/connect/t/odbc_postgresql.test storage/connect/user_connect.cc
-
- 11 Dec, 2013 7 commits
-
-
Olivier Bertrand authored
modified: storage/connect/plgdbutl.cpp - Update type translation to take care of type_modifiers modified: storage/connect/ha_connect.cc storage/connect/myutil.cpp storage/connect/myutil.h storage/connect/odbconn.cpp
-
Igor Babaev authored
-
Sergei Golubchik authored
don't reset interrupted_query after sending the KILL signal, otherwise the client won't know it has to stop fetching and printing the data.
-
Olivier Bertrand authored
added: storage/connect/mysql-test/connect/r/odbc_postgresql.result storage/connect/mysql-test/connect/t/have_odbc_postgresql.inc storage/connect/mysql-test/connect/t/odbc_postgresql.sql storage/connect/mysql-test/connect/t/odbc_postgresql.test modified: storage/connect/odbconn.cpp
-
Olivier Bertrand authored
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
-
Alexander Barkov authored
does not exist.
-
Alexander Barkov authored
with the same names present in multiple schemas The "TABNAME" option now supports qualified table names, to connect to tables residing in a particular schema and catalog. Qualified table names have the following format: [[CatalogName.]SchemaName.]TableName Qualified table names can be used: 1. In "normal" tables: CREATE TABLE t1 ENGINE=CONNECT TABLE_TYPE=ODBC CONNECTION='DSN=ConnectEng;UID=mtr;PWD=mtr' TABNAME='schema1.t1'; 2. In catalog tables (CATFUNC=Tables and CATFUNC=Columns) CREATE TABLE t1 ENGINE=CONNECT TABLE_TYPE=ODBC CONNECTION='DSN=postgresql;UID=user;PWD=password' TABNAME='schema1.t1'; Note, the % and _ wildcards are supported in the schema name and the table name parts: CREATE TABLE t1 ENGINE=CONNECT TABLE_TYPE=ODBC CONNECTION='DSN=postgresql;UID=user;PWD=password' TABNAME='%.t1'; CREATE TABLE t1 ENGINE=CONNECT TABLE_TYPE=ODBC CONNECTION='DSN=postgresql;UID=user;PWD=password' TABNAME='schema1.%';
-