1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-08 14:22:09 +03:00
Commit Graph

6646 Commits

Author SHA1 Message Date
David Hill
3b33601a20 mcol-406, fix non-root startup issue 2016-11-15 16:30:58 +00:00
David Hall
469256815a MCOL-311 Add findObjectFile command to mcsadmin 2016-11-14 17:54:03 -06:00
dhall-InfiniDB
e046059964 Merge pull request #56 from mariadb-corporation/MCOL-309
MCOL-309 Implement Information Schema tables
2016-11-14 14:52:31 -06:00
David Hall
61404b0f47 MessageID 104 is used during install. It needs a parameter. 2016-11-14 14:21:33 -06:00
Andrew Hutchings
874596c6cd MCOL-309 Implement Information Schema tables
This patch does the following:

* Fix a year storage issue in the datestamp for the columnstore tables
  metadata table (note that any previous tables will still have the
  incorrect year stored).
* Expose the table creation date in CalpontSystemCatalog::getTables()
* Add an INFORMATION_SCHEMA table listing the tables in ColumnStore
  (similar to systable)
* Add an INFORMATION_SCHEMA table listing the columns in ColumnStore
  (similar to syscolumn)
* Add an INFORMATION_SCHEMA table listing the extents in ColumnStore
  (similar to the editem tool but with additional file information)
* Modifies the build system and scripts to support the new tables
2016-11-14 15:44:20 +00:00
david hill
5aced3442f mcol-398 2016-11-11 14:09:00 -06:00
david hill
8da3f681a8 more non-root changes 2016-11-11 09:32:22 -06:00
dhall-InfiniDB
144b941935 Merge pull request #54 from mariadb-corporation/MCOL-372
MCOL-372: Modify condition which message is logged. Before was loggin…
2016-11-11 08:17:54 -06:00
david hill
e2b595c3e7 non-root changes 2016-11-11 08:13:55 -06:00
Andrew Hutchings
198ed53515 Merge pull request #55 from mariadb-corporation/MCOL-387
MCOL-387: Replaced option flags for version and release to not be tie…
2016-11-10 22:29:52 +00:00
david hill
5ba2432a73 change prefix on all scripts for non-root install 2016-11-10 16:27:41 -06:00
david hill
df65822c0d fix scp issue 2016-11-10 16:25:05 -06:00
david hill
b2864a55c8 remove sudo from ec2 check 2016-11-10 09:24:11 -06:00
david hill
16b4772434 add sudo to chmod to non-root install 2016-11-10 09:07:17 -06:00
Ben Thompson
5105b3281d MCOL-387: Replaced option flags for version and release to not be tied to CPACK_RPM options. Fixed the defaults used in releasenum file. 2016-11-09 17:55:15 -06:00
david hill
e9b41c5692 name change fix 2016-11-09 16:19:06 -06:00
david hill
46011a75ee more changes for name change 2016-11-09 15:20:16 -06:00
david hill
5450508c80 changed to use new MCS cloud scripts 2016-11-09 13:55:02 -06:00
david hill
401c3b4929 changed to use new MCS cloud scripts 2016-11-09 13:48:06 -06:00
david hill
cdc17de551 update CMakeLists.txt 2016-11-09 13:43:15 -06:00
Ben Thompson
42cd203265 MCOL-372: Modify condition which message is logged. Before was logging once a second on every timeout. 2016-11-09 13:13:42 -06:00
benthompson15
096d14596d Merge pull request #53 from mariadb-corporation/fix-rpath
Fix rpath settings
2016-11-09 10:59:18 -06:00
Andrew Hutchings
461052d206 Update MariaDB version number 2016-11-09 14:02:01 +00:00
Andrew Hutchings
40c3d05d3a Fix rpath settings
I accidentally used CMAKE_INSTALL_PREFIX which isn't always set for the
engine build. This patch uses INSTALL_ENGINE instead
2016-11-09 13:52:24 +00:00
David Hall
bd17d20710 MCOL-307 Add Redistribute command to mcsadmin 2016-11-08 15:19:31 -06:00
david hill
ce10b08e8e change amazon scripts for centos 7 and mcs 2016-11-07 16:53:09 -06:00
dhall-InfiniDB
15d6cafb53 Merge pull request #52 from mariadb-corporation/MCOL-385
MCOL-385 Fix crash observed with 10.1.19 merge
2016-11-07 15:21:15 -06:00
dhall-InfiniDB
df238a4e0f Merge pull request #50 from mariadb-corporation/MCOL-334
MCOL-334 Give joins in views highest priority
2016-11-07 15:20:21 -06:00
Andrew Hutchings
14a9581bb6 MCOL-385 Fix crash observed with 10.1.19 merge
Appears to be a regression introduced in MCOL-361 which was causing a
segault with bug3670.negative.sql
2016-11-07 21:04:26 +00:00
dhall-InfiniDB
cf646c62c6 Merge pull request #51 from mariadb-corporation/MCOL-129
MCOL-129 INSERT/UPDATE strict mode support
2016-11-07 09:52:43 -06:00
Andrew Hutchings
4fc7fa12cd MCOL-129 INSERT/UPDATE strict mode support
This changes the warning for truncation to the correct MariaDB error
code (1264).

In addition it passes the strict mode up into the DML class to roll back
correctly.

It also sets the abort_on_warning flag for updates as this isn't set on
the rnd_init phase but is needed for strict mode to work.
2016-11-04 14:06:00 +00:00
Andrew Hutchings
41266b0f23 MCOL-334 Give joins in views highest priority
For "select * from {view} where {col} in ({subquery})" type queries the
join for 'in' was being processed before any joins in the view. This
patch changes the priority so joins in views are processed first.
2016-11-03 17:54:12 +00:00
dhall-InfiniDB
059a158837 Merge pull request #49 from mariadb-corporation/MCOL-263
MCOL-263: throw different error message on load data infile if column…
2016-11-03 09:39:40 -05:00
Andrew Hutchings
caace4a096 Merge pull request #48 from mariadb-corporation/MCOL-361
MCOL-361 String::c_ptr() can cause a realloc and break things. Remove…
2016-11-03 13:49:25 +00:00
Ben Thompson
39c3cabb7c MCOL-263: throw different error message on load data infile if columnstore suspendDatabaseWrite is enabled 2016-11-02 17:34:46 -05:00
david hill
1aa90ae6a9 merge mcol-370 into develop 2016-11-02 10:56:32 -05:00
David Hall
086a98794e MCOL-361 String::c_ptr() can cause a realloc and break things. Remove all uses of c_ptr to String objects from the server. 2016-11-01 16:07:13 -05:00
david hill
e28e6d7748 mcol-370 2016-10-31 17:10:51 -05:00
Andrew Hutchings
c2988cfbf5 Merge pull request #47 from mariadb-corporation/MCOL-121
MCOL-121 reverse the disabling client progress reports.
2016-10-31 19:48:20 +00:00
David Hall
ab5afda7c4 MCOL-121 reverse the disabling client progress reports. 2016-10-31 14:06:10 -05:00
dhall-InfiniDB
96dfb4c294 Merge pull request #46 from mariadb-corporation/MCOL-278
Warning on drop table if exists error
2016-10-31 11:53:55 -05:00
Ben Thompson
c975f00973 Throw warning when table doesn't exist in columnstore so drop table if exists can still remove the front end table. 2016-10-28 15:37:38 -05:00
dhall-InfiniDB
ed804557bf Merge pull request #45 from mariadb-corporation/MCOL-153
MCOL-153 Add UDF function calgetsqlcount() which will display the num…
2016-10-27 15:51:05 -05:00
David Hall
0368dd487a MCOL-153 Add UDF function calgetsqlcount() which will display the number of sql statements active and the number waiting. 2016-10-27 15:49:01 -05:00
dhall-InfiniDB
6694bc3d16 Merge pull request #44 from mariadb-corporation/MCOL-344
Add better cache explanations to debug_walk. This is debug only.
2016-10-27 15:42:00 -05:00
David Hall
331dfd3a4c Add better cache explanations to debug_walk. This is debug only. 2016-10-27 15:39:50 -05:00
Andrew Hutchings
32c76825de Merge pull request #43 from mariadb-corporation/MCOL-218
Mcol 218
2016-10-27 20:21:19 +01:00
dhall-InfiniDB
8f2fca2239 Merge pull request #41 from mariadb-corporation/MCOL-350
MCOL-350 Fix zero date comparison
2016-10-27 10:06:10 -05:00
dhall-InfiniDB
abda3942c9 Merge pull request #42 from mariadb-corporation/MCOL-352
MCOL-352 Fix VARCHAR with no NUL
2016-10-27 10:00:46 -05:00
David Hill
2d0a7f5ca3 merge develop branch columnstore-1.0.4 2016-10-26 22:09:55 +00:00