1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-12-20 01:42:27 +03:00
Commit Graph

3637 Commits

Author SHA1 Message Date
Andrew Hutchings
addd719524 MCOL-1083 Fix NULL row init for TEXT/BLOB
We should have been initalizing TEXT/BLOB 8 byte tokens for NULL,
instead we were initializing the entire length of the TEXT/BLOB which
can do a lot of damage.
2017-12-06 17:08:08 +00:00
david hill
b295c8fc0f Merge pull request #340 from mariadb-corporation/MCOL-445
MCOL-445: Modify getConfig and setConfig to be case insensitive on va…
2017-12-06 11:02:56 -06:00
david hill
22cb35256c Merge pull request #339 from mariadb-corporation/MCOL-446
MCOL-446: update myCnf-include-args.text to fix variable name. Modify…
2017-12-06 11:00:58 -06:00
Ben Thompson
26f7344dc0 MCOL-445: Modify getConfig and setConfig to be case insensitive on variable names. 2017-12-05 16:59:45 -06:00
Ben Thompson
252880ebdf MCOL-446: update myCnf-include-args.text to fix variable name. Modify mycnfUpgrade to use regex search instead of find for more accurate variable searches, this would cause problem with generic variable 'port'. 2017-12-05 16:58:06 -06:00
David.Hall
b112e826a2 Merge pull request #338 from mariadb-corporation/MCOL-1068
MCOL-1068 Improve compression_ratio() procedure
2017-12-01 16:17:28 -06:00
Andrew Hutchings
b657938709 MCOL-1068 Improve compression_ratio() procedure
* Uncompressed columns caused a miscalculation for compression ratio
* We now show a ratio such as 2:1 rather than a percentage
* compressed_data_size instead of file_size is used to show the
compression of actual data, ignoring the pre-allocated segment
2017-12-01 19:32:35 +00:00
benthompson15
7c2640fab0 Merge pull request #335 from mariadb-corporation/MCOL-1055
MCOL-1055- backport clustertester fixes from 1.1
2017-11-30 11:44:32 -06:00
Andrew Hutchings
ae9de1e426 Fix mergeup errors 2017-11-30 15:15:01 +00:00
Andrew Hutchings
37f673d121 Merge branch 'develop-1.0' into 1.0-merge-up 2017-11-30 15:09:11 +00:00
David.Hall
a3d81dd65e Merge pull request #332 from mariadb-corporation/MCOL-444
MCOL-444 Truncate UTF8 correctly
2017-11-29 14:05:26 -06:00
David.Hall
760c9f8c30 Merge pull request #334 from mariadb-corporation/MCOL-1040
MCOL-1040 Fix returnedColumn assumption
2017-11-29 13:58:54 -06:00
david hill
4d8026618c change how the os_detect is run on remote nodes 2017-11-29 09:36:24 -06:00
david hill
436a99a8fd MCOL-1055- backport clustertester fixes from 1.1 2017-11-29 08:54:44 -06:00
Andrew Hutchings
7fe55926ec MCOL-1040 Fix returnedColumn assumption
Code appears to assume a simple returned column is derrived when that
may not always be the case.
2017-11-29 14:47:05 +00:00
Andrew Hutchings
3d5bd3809c MCOL-444 Truncate UTF8 correctly
cpimport would truncate UTF8 data half way through a character which
would cause problems for functions using that data. This patch
calculates the correct truncation point when inserting the data.
2017-11-29 10:43:57 +00:00
benthompson15
7476bf6837 Merge pull request #331 from mariadb-corporation/MCOL-942
MCOL-942 - backported mysql rep fixes from 1.1
2017-11-28 15:36:56 -06:00
david hill
bc7dbb3169 MCOL-942 - backported mysql rep fixes from 1.1 - newscript 2017-11-28 13:24:18 -06:00
david hill
eff7d499ec MCOL-942 - backported mysql rep fixes from 1.1 2017-11-28 13:19:28 -06:00
benthompson15
9b65a86ce2 Merge pull request #330 from mariadb-corporation/MCOL-936
MCOL-936 - backport from 1.1
2017-11-27 15:53:21 -06:00
david hill
8791cb0e5e MCOL-936 - backport from 1.1 2017-11-27 15:48:11 -06:00
benthompson15
6e7ef85e75 Merge pull request #324 from mariadb-corporation/MCOL-1047
MCOL-1047 - added HOME directory and fixed packages name for 1.1
2017-11-27 15:34:03 -06:00
Andrew Hutchings
b795e6b781 Merge pull request #325 from mariadb-corporation/merge-up-dev
Merge develop-1.1 into develop
2017-11-24 09:15:29 +00:00
Andrew Hutchings
932819ba23 Merge branch 'develop-1.1' into merge-up-dev 2017-11-24 11:10:09 +02:00
david hill
7f44f43486 MCOL-1047 - added HOME directory and fixed packages name for 1.1 2017-11-22 10:29:02 -06:00
david hill
573d465a75 bump version number 2017-11-21 15:23:55 -06:00
david hill
8f018f81d7 increased wait for procmon to go active to 3 minutes, neede for amazon 2017-11-21 15:18:23 -06:00
david hill
2a3bd029d0 fix a system complete/install comment 2017-11-21 15:17:40 -06:00
David.Hall
400eae7a28 Merge pull request #322 from mariadb-corporation/MCOL-1029
MCOL-1029 Skip cached conditions
2017-11-21 10:48:02 -06:00
David.Hall
385b734c1c Merge pull request #323 from mariadb-corporation/MCOL-1029-1.0
MCOL-1029 Skip cached conditions
2017-11-21 10:47:44 -06:00
david hill
96bed8b09c Merge branch 'master' into develop-1.1 2017-11-20 13:15:00 -06:00
Andrew Hutchings
d60bc999c6 MCOL-1029 Skip cached conditions
Cached conditions are things like (TRUE OR FALSE). They don't actually
add any value to the query and were breaking our working stack trying to
process them.
2017-11-20 16:06:21 +00:00
Andrew Hutchings
98138fe493 MCOL-1029 Skip cached conditions
Cached conditions are things like (TRUE OR FALSE). They don't actually
add any value to the query and were breaking our working stack trying to
process them.
2017-11-20 16:04:20 +00:00
david hill
d5119173e7 increase the addmodule timeout to 60secs, needed for amazon 2017-11-17 14:32:58 -06:00
david hill
a5038cd79b fix added in um module for mysqlrep columnstore-1.1.2 2017-11-16 08:48:01 -06:00
Andrew Hutchings
dadcd6e969 Merge pull request #319 from mariadb-corporation/MCOL-963
MCOL-963 fix for regressions introduced
2017-11-14 21:55:01 +00:00
David Hall
9a012444ec MCOL-963 fix for regressions introduced 2017-11-14 15:25:38 -06:00
david hill
f5a2306bb2 increase procup timeout from 6 to 12, neede for amazon 2017-11-14 11:21:50 -06:00
david hill
2c36e4ce05 Merge pull request #312 from mariadb-corporation/MCOL-976
MCOL-976: Change how processes are restarted after losing or regainin…
2017-11-13 17:12:48 -06:00
Ben Thompson
e345d20f97 MCOL-976: Change to how restartProcessType restarts DDLProc and DMLProc. 2017-11-13 16:25:11 -06:00
David.Hall
969b6d2826 Merge pull request #317 from mariadb-corporation/MCOL-1008
MCOL-1008 Fix bad length on bulk DML insert
2017-11-13 08:35:46 -06:00
David.Hall
478fb0df92 Merge pull request #318 from mariadb-corporation/MCOL-1008-1.0
MCOL-1008 Fix bad length on bulk DML insert
2017-11-13 08:35:21 -06:00
Andrew Hutchings
766f0b812b MCOL-1008 Fix bad length on bulk DML insert
If a VARCHAR was defined as less than 255 characters and a data via LDI
or INSERT...SELECT was > 127 characters the length field would contain a
negative number.

In 1.0.11 and 1.1.0 this was not a problem because we cast the negative
back again. With MCOL-877 we stoped doing the double-cast. This patch
casts properly the first time.
2017-11-11 09:34:35 +00:00
Andrew Hutchings
854d32560a MCOL-1008 Fix bad length on bulk DML insert
If a VARCHAR was defined as less than 255 characters and a data via LDI
or INSERT...SELECT was > 127 characters the length field would contain a
negative number.

In 1.0.11 and 1.1.0 this was not a problem because we cast the negative
back again. With MCOL-877 we stoped doing the double-cast. This patch
casts properly the first time.
2017-11-11 09:31:09 +00:00
david hill
fda44955ea MCOL-1020 - added checks to prevent crash 2017-11-10 14:13:27 -06:00
david hill
b63d9fcce1 MCOL-1024 2017-11-10 13:41:50 -06:00
david hill
b43afdb8e9 add back in remove prompt changes 2017-11-10 11:12:52 -06:00
david hill
6429c1e06a fix issue with amazon install problems, rc.local not setup and addmodule failing due to login issues 2017-11-10 11:01:15 -06:00
david hill
22d3016e52 fix issue with amazon install problems, rc.local not setup and addmodule failing due to login issues 2017-11-10 10:44:43 -06:00
david hill
cecc9edf7b remove password passing in post-mysql-install 2017-11-10 08:22:29 -06:00