Vicențiu Ciorbaru
aa59ecec89
Merge branch '10.0' into 10.1
2018-06-12 18:55:27 +03:00
Vicențiu Ciorbaru
170bec36c0
Merge branch '5.5' into 10.0
2018-06-12 17:59:31 +03:00
Sergei Golubchik
e7ca377cb7
MDEV-16342 SHOW ENGINES: MyISAM description is useless
...
rewrite tautological engine descriptions
2018-06-11 09:57:54 +02:00
Sergei Golubchik
48b1d17534
MDEV-11943 I_S.TABLES inconsistencies with tables with unknown storage engine
...
Make SELECT <columns> FROM I_S.TABLES behave identically independently
from whether <columns> require opening the table in engine or
<columns> can be filled with only opening the frm.
In particular, fill_schema_table_from_frm() should not silently skip
frms with unknown engine, but should fill the I_S.TABLES row
with NULLs just like fill_schema_table_by_open() does.
2017-03-10 18:21:24 +01:00
Sergei Golubchik
326a8dcd87
Merge branch '10.0' into 10.1
2016-07-13 12:09:59 +02:00
Sergei Golubchik
c6fdb92ca8
Merge branch '5.5' into 10.0
2016-07-12 22:20:46 +02:00
Sergey Vojtovich
a7814d44fc
MDEV-10311 - funcs_1.processlist_priv_no_prot fails sporadically
...
State column of SHOW PROCESSLIST can have NULL values for being initialized
threads (between new connection was acknowledged and waiting for network data).
Fixed test case to handle such cases by waiting for State to become empty
string.
2016-06-30 12:59:52 +04:00
Sergei Golubchik
bb54df6ec9
update test results after MDEV-9307
2016-02-23 10:46:15 +01:00
Vladislav Vaintroub
3a24f1cf84
MDEV-9307 - provide info about DATA/INDEX directory in INFORMATION_SCHEMA.TA
...
BLES (in CREATE_OPTIONS column)
2016-02-22 12:48:03 +01:00
Sergei Golubchik
8efdfc8b58
update results
...
innodb 32-bit
funcs_1 embedded
2015-12-23 16:22:48 +01:00
Sergei Golubchik
d8e127f9f4
Merge branch '10.1' into bb-10.1-serg
2015-12-22 15:19:51 +01:00
Sergei Golubchik
0686c34d22
MDEV-8605 MariaDB not use DEFAULT value even when inserted NULL for NOT NULLABLE column
...
NOT NULL constraint must be checked *after* the BEFORE triggers.
That is for INSERT and UPDATE statements even NOT NULL fields
must be able to store a NULL temporarily at least while
BEFORE INSERT/UPDATE triggers are running.
2015-12-21 21:30:54 +01:00
Alexey Botchkov
d58a770201
MDEV-7540 Information Schema SPATIAL_REF_SYS contents don't match the expected contents.
...
Table content filled appropriately.
Thare are still just two records as we don't have geodetics yet.
2015-12-21 22:34:30 +04:00
Monty
f813a00029
Fixed failing test cases and compiler warnings found by buildbot
...
- Added some extra command to rpl_start_stop to ensure that the
IO thread has connected to the master before we shut down the server.
- if signal returns signalhandler_t, use this with the alarm code
- Added missing tests to sys_vars
- Fixed some possible overflow bugs in tabxml.cpp
2015-11-24 20:04:12 +02:00
Sergei Golubchik
87c306802b
update test results
2015-11-20 09:16:36 +01:00
Sergei Golubchik
beded7d9c9
Merge branch '10.0' into 10.1
2015-11-19 15:52:14 +01:00
Sergei Petrunia
2776159e42
MDEV#7383: Update test results
2015-11-12 22:21:47 +03:00
Alexander Barkov
3ad035f66b
MDEV-8658 DATE(zerofill_column) and DATE(COALESCE(zerofill_column)) return different results
...
MDEV-8660 TIME(int_zerofill_column) returns a wrong result
2015-09-23 20:42:28 +04:00
Elena Stepanova
b9da3ba45e
Follow-up for MDEV-6756 - fix the ps-protocol version of the tests
2015-09-23 19:28:20 +03:00
Elena Stepanova
70effb6be8
Follow-up for MDEV-6756 - fix the embedded version of the test
2015-09-23 19:15:29 +03:00
Alexander Barkov
5c9c8ef1ea
MDEV-3929 Add system variable explicit_defaults_for_timestamp for compatibility with MySQL
2015-09-22 14:01:54 +04:00
Oleksandr Byelkin
7dd137c4ac
MDEV-6756: map a linux pid (child pid) to a connection id shown in the output of SHOW PROCESSLIST
...
Added tid (thread ID) for system where it is present.
ps -eL -o tid,pid,command
shows the thread on Linux
2015-09-17 14:30:58 +02:00
Alexander Barkov
d9b25ae3db
MDEV-8466 CAST works differently for DECIMAL/INT vs DOUBLE for empty strings
...
MDEV-8468 CAST and INSERT work differently for DECIMAL/INT vs DOUBLE for a string with trailing spaces
2015-09-17 11:05:07 +04:00
Oleksandr Byelkin
e3982cead2
MDEV-6066: Merge new defaults from 5.6 and 5.7 (defaults changed, QC can be stopped with no-zero size)
2015-09-04 10:33:56 +02:00
Sergei Golubchik
530a6e7481
Merge branch '10.0' into 10.1
...
referenced_by_foreign_key2(), needed for InnoDB to compile,
was taken from 10.0-galera
2015-09-03 12:58:41 +02:00
Monty
6b20342651
Ensure that fields declared with NOT NULL doesn't have DEFAULT values if not specified and if not timestamp or auto_increment
...
In original code, sometimes one got an automatic DEFAULT value in some cases, in other cases not.
For example:
create table t1 (a int primary key) - No default
create table t2 (a int, primary key(a)) - DEFAULT 0
create table t1 SELECT .... - Default for all fields, even if they where defined as NOT NULL
ALTER TABLE ... MODIFY could sometimes add an unexpected DEFAULT value.
The patch is quite big because we had some many test cases that used
CREATE ... SELECT or CREATE ... (...PRIMARY KEY(xxx)) which doesn't have an automatic DEFAULT anymore.
Other things:
- Removed warnings from InnoDB when waiting from semaphore (got this when testing things with --big)
2015-08-18 11:18:57 +03:00
Alexander Barkov
12da27da85
MDEV-8472 BINARY, VARBINARY and BLOB return different warnings on CAST to DECIMAL
2015-07-16 16:28:06 +04:00
Nirbhay Choubey
a5f4412bd4
Fix embedded result to reflect increased system variable's max value length.
2015-07-06 11:40:56 -04:00
Nirbhay Choubey
f0ce8482c1
Adjust result files to reflect increased system variable's max value length.
2015-07-01 22:52:59 -04:00
Sergei Golubchik
658992699b
Merge tag 'mariadb-10.0.20' into 10.1
2015-06-27 20:35:26 +02:00
Alexander Barkov
115904c2c8
MDEV-7824 [Bug #68041 ] Zero date can be inserted in strict no-zero mode through a default value
2015-06-26 10:16:51 +04:00
Sergei Golubchik
985e430c0f
after-merge fixes
...
in innobase: compilation error on windows
other changes: perfschema merge followup
2015-06-16 23:55:56 +02:00
Alexander Barkov
8345bc6921
MDEV-8152 is_columns_is_embedded test fails
...
Recording --ps and --embedded tests (a postfix for MDEV-7807)
2015-05-13 15:34:20 +04:00
Alexander Barkov
91ee98a8c8
MDEV-7807 information_schema.processlist truncates queries with binary strings
...
Adding a new column INFORMATION_SCHEMA.PROCESSLIST.INFO_BINARY.
2015-05-08 00:34:06 +04:00
Alexander Barkov
e28a241907
MDEV-7661 Unexpected result for: CAST(0xHHHH AS CHAR CHARACTER SET xxx)
...
for incorrect byte sequences
2015-03-18 17:10:48 +04:00
Monty
d7d589dc01
Push for testing of encryption
2015-02-10 10:21:17 +01:00
Sergei Golubchik
c7d9f11c8b
update test results for embedded
2015-02-10 00:45:37 +01:00
Vicențiu Ciorbaru
4c69a6fff2
MDEV-6918 Create a way to see a user's default role.
...
Added an extra column to i_s_applicable_roles, named IS_DEFAULT.
The column displays which role is the default role for the user
querying the table.
2015-02-09 17:16:55 +02:00
Sergei Golubchik
6627895176
MDEV-6731 No ALGORITHM information in I_S.VIEWS
2015-01-09 10:23:28 +01:00
Alexander Barkov
2dbd26932d
MDEV-7283 UDF: CREATE OR REPLACE, CREATE IF NOT EXISTS, DROP IF EXISTS
...
MDEV-7282 SP: CREATE OR REPLACE, CREATE IF NOT EXISTS
2014-12-15 17:41:15 +04:00
Sergei Golubchik
227510e039
parser cleanup: don't store field properties in LEX, use Create_field directly
...
length/dec/charset are still in LEX, because they're also used
for CAST and dynamic columns.
also
1. fix "MDEV-7041 COLLATION(CAST('a' AS CHAR BINARY)) returns a wrong result"
2. allow BINARY modifier in stored function RETURN clause
3. allow "COLLATION without CHARSET" in SP/SF (parameters, RETURN, DECLARE)
4. print correct variable name in error messages for stored routine parameters
2014-12-04 16:09:34 +01:00
Nirbhay Choubey
2b40a389a5
MDEV-4412 : SLOW QUERY LOG - add affected rows (UPDATE / DELETE) in slow query log
...
Added Rows_affected to slow query log & mysql.slow_log table.
2014-11-30 21:13:41 -05:00
Sergei Golubchik
2e728c7069
rdiff not needed anymore
2014-11-30 21:01:55 +01:00
Sergei Golubchik
f7708d6830
fixes for --embedded
2014-11-29 22:29:03 +01:00
Alexey Botchkov
c0a00a2dcf
MDEV-7171 funcs_1.is_tables_is and main.information_schema-big fail in buildbot.
...
test results updated with the new GIS-related IS tables.
2014-11-24 12:25:56 +04:00
Alexey Botchkov
0a16fe4ec9
GIS-related test results updated.
2014-10-24 17:12:03 +05:00
Sergei Golubchik
7f5e51b940
MDEV-34 delete storage/ndb and sql/*ndb* (and collateral changes)
...
remove:
* NDB from everywhere
* IM from mtr-v1
* packaging/rpm-oel and packaging/rpm-uln
* few unused spec files
* plug.in file
* .bzrignore
2014-10-11 18:53:06 +02:00
Sergei Golubchik
57dd1f6f3f
MDEV-6108 update userstat feature from percona server
...
TOTAL_SSL_CONNECTIONS columns in CLIENT_STATISTICS and USER_STATISTICS
2014-10-11 18:53:05 +02:00
Sergei Golubchik
3fa8c279d5
INFORMATION_SCHEMA.SYSTEM_VARIABLES.GLOBAL_VALUE_ORIGIN
2014-10-11 10:23:20 +02:00
Sergei Golubchik
513f5840f8
MDEV-6138 show sysvar's help in I_S tables
...
INFORMATION_SCHEMA.SYSTEM_VARIABLES
2014-10-11 10:23:20 +02:00