Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/ports/greenplum/6/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@
# under the License.
#
add_current_greenplum_version()
add_extension_support()
1 change: 1 addition & 0 deletions src/ports/greenplum/7/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@
# under the License.
#
add_current_greenplum_version()
add_extension_support()
5 changes: 5 additions & 0 deletions src/ports/greenplum/extension/madlib.control_in
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
default_version = '@MADLIB_VERSION_MAJOR@.@MADLIB_VERSION_MINOR@.@MADLIB_VERSION_PATCH@'
comment = 'A scalable in-database analytics library'
relocatable = false
module_pathname = '$libdir/libmadlib.so'
requires = 'plpython3u'
5 changes: 5 additions & 0 deletions src/ports/greenplum/extension/madlib.sql.base_in
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
CREATE TABLE @[email protected](
id serial, version varchar(255), applied timestamp default current_timestamp
);
INSERT INTO @[email protected](version)
VALUES('@MADLIB_VERSION_STRING@'::text);