dbh201
2022-08-24 060fa72346fa5d0bf509ab3180a2c6711b3b9cba
mariadb-106: initial commit, version 10.6.9

24 files added
36441 ■■■■■ changed files
components/database/mariadb-106/Makefile 142 ●●●●● patch | view | raw | blame | history
components/database/mariadb-106/files/auth_attr 2 ●●●●● patch | view | raw | blame | history
components/database/mariadb-106/files/mariadb_106 76 ●●●●● patch | view | raw | blame | history
components/database/mariadb-106/files/mariadb_106.xml 103 ●●●●● patch | view | raw | blame | history
components/database/mariadb-106/files/my-medium.cnf 150 ●●●●● patch | view | raw | blame | history
components/database/mariadb-106/files/prof_attr 1 ●●●● patch | view | raw | blame | history
components/database/mariadb-106/manifests/sample-manifest.p5m 17366 ●●●●● patch | view | raw | blame | history
components/database/mariadb-106/mariadb-106.license 339 ●●●●● patch | view | raw | blame | history
components/database/mariadb-106/mariadb-106.p5m 311 ●●●●● patch | view | raw | blame | history
components/database/mariadb-106/mariadb-106client.p5m 119 ●●●●● patch | view | raw | blame | history
components/database/mariadb-106/mariadb-106lib.p5m 614 ●●●●● patch | view | raw | blame | history
components/database/mariadb-106/mariadb-106test.p5m 16786 ●●●●● patch | view | raw | blame | history
components/database/mariadb-106/patches/02-strerror.patch 11 ●●●●● patch | view | raw | blame | history
components/database/mariadb-106/patches/04-dtrace.patch 71 ●●●●● patch | view | raw | blame | history
components/database/mariadb-106/patches/08-dtrace-invalid-conversion.patch 203 ●●●●● patch | view | raw | blame | history
components/database/mariadb-106/patches/11-typecast_my_atomic.patch 16 ●●●●● patch | view | raw | blame | history
components/database/mariadb-106/patches/12-cmake_dtrace_link.patch 10 ●●●●● patch | view | raw | blame | history
components/database/mariadb-106/patches/15_fix-aligned-alloc.patch 10 ●●●●● patch | view | raw | blame | history
components/database/mariadb-106/patches/16_c++-standard.patch 11 ●●●●● patch | view | raw | blame | history
components/database/mariadb-106/patches/17_ifreq-hwaddr.patch 11 ●●●●● patch | view | raw | blame | history
components/database/mariadb-106/patches/18_remove-concurrency-variable.patch 32 ●●●●● patch | view | raw | blame | history
components/database/mariadb-106/patches/19_fix-pam-include-order.patch 12 ●●●●● patch | view | raw | blame | history
components/database/mariadb-106/patches/20_my-cnf-d.patch 12 ●●●●● patch | view | raw | blame | history
components/database/mariadb-106/pkg5 33 ●●●●● patch | view | raw | blame | history
components/database/mariadb-106/Makefile
New file
@@ -0,0 +1,142 @@
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"). You may
# only use this file in accordance with the terms of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source. A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
#
# Copyright 2011-2013, EveryCity Ltd. All rights reserved.
# Copyright 2016-2017, Wiselabs Software Ltda - http://www.wiselabs.com.br . All rights reserved.
# Copyright 2019, Michal Nowak
# Copyright 2022, erwinlem
# Copyright 2022, Daniel Bell
#
BUILD_BITS= 64
BITS=        64
BUILD_STYLE=cmake
include ../../../make-rules/shared-macros.mk
COMPONENT_NAME=        mariadb
COMPONENT_MAJOR_VERSION=10.6
COMPONENT_MINOR_VERSION=9
COMPONENT_VERSION=    $(COMPONENT_MAJOR_VERSION).$(COMPONENT_MINOR_VERSION)
COMPONENT_SRC=        $(COMPONENT_NAME)-$(COMPONENT_VERSION)
COMPONENT_ARCHIVE=    $(COMPONENT_SRC).tar.gz
COMPONENT_PROJECT_URL=    https://www.mariadb.org/
COMPONENT_ARCHIVE_URL=    https://dlm.mariadb.com/2364021/MariaDB/$(COMPONENT_SRC)/source/$(COMPONENT_ARCHIVE)
COMPONENT_SIG_URL=    https://dlm.mariadb.com/2364020/MariaDB/$(COMPONENT_SRC)/source/$(COMPONENT_ARCHIVE).asc
include $(WS_MAKE_RULES)/common.mk
JAVA_HOME=/usr/jdk/openjdk1.8.0
AR=/usr/bin/gar
RANLIB=/usr/bin/granlib
PCRE_INCLUDE=/usr/include/pcre
CFLAGS += -fPIC
CXXFLAGS += -fPIC
CPPFLAGS += -I$(PCRE_INCLUDE) -I$(JAVA_HOME)/include/solaris
# Prevents "Text relocation remains referenced against symbol offset
# in file ../../sql/mysqld_dtrace_all.o" error
LDFLAGS += -Bsymbolic -mimpure-text -lrt
CONFIGURE_PREFIX=/usr/mariadb/$(COMPONENT_MAJOR_VERSION)
CONFDIR=/etc/mariadb/$(COMPONENT_MAJOR_VERSION)
DATA_PREFIX=/var/mariadb/$(COMPONENT_MAJOR_VERSION)
CMAKE_PLUGINDIR.64 =    lib/$(MACH64)/plugin
CMAKE_OPTIONS+= -DCMAKE_C_COMPILER=$(CC)
CMAKE_OPTIONS+= -DCMAKE_CXX_COMPILER=$(CXX)
CMAKE_OPTIONS+= -DCMAKE_AR=$(AR)
CMAKE_OPTIONS+= -DCMAKE_RANLIB=$(RANLIB)
CMAKE_OPTIONS+= -DINSTALL_LAYOUT=SVR4
CMAKE_OPTIONS+= -DCMAKE_INSTALL_PREFIX=$(CONFIGURE_PREFIX)
CMAKE_OPTIONS+= -DINSTALL_BINDIR=$(CMAKE_BINDIR.$(BITS))
CMAKE_OPTIONS+= -DINSTALL_INFODIR=bin
CMAKE_OPTIONS+= -DINSTALL_INCLUDEDIR=include
CMAKE_OPTIONS+= -DINSTALL_LIBDIR=$(CMAKE_LIBDIR.$(BITS))
CMAKE_OPTIONS+= -DINSTALL_PLUGINDIR=$(CMAKE_PLUGINDIR.$(BITS))
CMAKE_OPTIONS+= -DINSTALL_MANDIR=man
CMAKE_OPTIONS+= -DINSTALL_SHAREDIR=share
CMAKE_OPTIONS+= -DINSTALL_MYSQLSHAREDIR=share
CMAKE_OPTIONS+= -DINSTALL_SBINDIR=$(CMAKE_BINDIR.$(BITS))
CMAKE_OPTIONS+= -DINSTALL_SCRIPTDIR=$(CMAKE_BINDIR.$(BITS))
CMAKE_OPTIONS+= -DMYSQL_DATADIR=$(DATA_PREFIX)/data
CMAKE_OPTIONS+= -DSYSCONFDIR=$(CONFDIR)
CMAKE_OPTIONS+= -DINSTALL_SYSCONFDIR=$(CONFDIR)
CMAKE_OPTIONS+= -DENABLE_DTRACE=ON
CMAKE_OPTIONS+= -DWITH_READLINE=ON
CMAKE_OPTIONS+= -DWITH_EMBEDDED_SERVER=ON
CMAKE_OPTIONS+= -DWITHOUT_MROONGA_STORAGE_ENGINE=ON
CMAKE_OPTIONS+= -DHAVE_VISIBILITY_HIDDEN=0
CMAKE_OPTIONS+= -DMY_CONTEXT_USE_UCONTEXT=1
CMAKE_OPTIONS+= -DWITH_EXTRA_CHARSETS=complex
CMAKE_OPTIONS+= -DWITH_ZLIB=system
CMAKE_OPTIONS+= -DWITH_PCRE=system
CMAKE_OPTIONS+= -DWITH_SSL=system
CMAKE_OPTIONS+= -DINSTALL_SUPPORTFILESDIR=share/mysql
CMAKE_OPTIONS+= -DCMAKE_BUILD_TYPE=Release
CMAKE_OPTIONS+= -DCMAKE_REQUIRED_INCLUDES=$(PCRE_INCLUDE)
CMAKE_OPTIONS+= -DWITH_INNOBASE_STORAGE_ENGINE=1
CMAKE_OPTIONS+= -DWITH_INNODB_MEMCACHED=ON
CMAKE_OPTIONS+= -DWITH_COMMENT="OpenIndiana MariaDB"
CMAKE_OPTIONS+= -DWITH_XTRADB_STORAGE_ENGINE=1
CMAKE_OPTIONS+= -DWITH_CSV_STORAGE_ENGINE=1
CMAKE_OPTIONS+= -DCOMPILATION_COMMENT="OpenIndiana package"
CMAKE_OPTIONS+= -DJAVA_INCLUDE_PATH=$(JAVA_HOME)/include
CMAKE_OPTIONS+= -DJAVA_AWT_LIBRARY=/usr/java/jre/lib/amd64/libjawt.so
CMAKE_OPTIONS+= -DJAVA_JVM_LIBRARY=/usr/java/jre/lib/amd64/server/libjvm.so
CMAKE_ENV += CPPFLAGS="$(CPPFLAGS)"
COMPONENT_TEST_TRANSFORMS= \
    '-n ' \
    '-e "s/ \].*/ \]/"' \
    '-e "s/ w[0-9] //"' \
    '-e "s/\[//"' \
    '-e "s/\]//"' \
    '-e "s/  */ /g"' \
    '-e "s/ $$//"' \
    '-e "/pass$$/p"' \
    '-e "/fail$$/p"'
COMPONENT_TEST_CMD=    mysql-test/mtr \
                --parallel=$(shell getconf NPROCESSORS_ONLN) \
                --mem \
                --force \
                --retry=0 \
                --mysqld=--binlog-format=mixed \
                --mysqld=--innodb-flush-method=O_DSYNC \
                --force-restart \
                --max-test-fail=0 \
                --skip-test-list=unstable-tests | sort
REQUIRED_PACKAGES += web/curl
REQUIRED_PACKAGES += compress/zstd
# Auto-generated dependencies
REQUIRED_PACKAGES += $(GCC_RUNTIME_PKG)
REQUIRED_PACKAGES += $(GXX_RUNTIME_PKG)
REQUIRED_PACKAGES += compress/bzip2
REQUIRED_PACKAGES += compress/xz
REQUIRED_PACKAGES += library/libxml2
REQUIRED_PACKAGES += library/lz4
REQUIRED_PACKAGES += library/lzo
REQUIRED_PACKAGES += library/pcre2
REQUIRED_PACKAGES += library/security/cracklib
REQUIRED_PACKAGES += library/security/openssl
REQUIRED_PACKAGES += library/unixodbc
REQUIRED_PACKAGES += library/zlib
REQUIRED_PACKAGES += runtime/perl
REQUIRED_PACKAGES += service/security/kerberos-5
REQUIRED_PACKAGES += shell/bash
REQUIRED_PACKAGES += SUNWcs
REQUIRED_PACKAGES += system/library
REQUIRED_PACKAGES += system/library/math
REQUIRED_PACKAGES += system/library/security/gss
components/database/mariadb-106/files/auth_attr
New file
@@ -0,0 +1,2 @@
solaris.smf.manage.mariadb/version_106:RO::Manage MariaDB service states::
solaris.smf.value.mariadb/version_106:RO::Change MariaDB value properties::
components/database/mariadb-106/files/mariadb_106
New file
@@ -0,0 +1,76 @@
#!/sbin/sh
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
# Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
# Copyright (c) 2018, Michal Nowak
#
. /lib/svc/share/smf_include.sh
# SMF_FMRI is the name of the target service. This allows multiple instances
# to use the same script.
getproparg() {
    val=`svcprop -p $1 $SMF_FMRI`
    [ -n "$val" ] && echo $val
}
MYSQLBIN=`getproparg mariadb/bin`
MYSQLDATA=`getproparg mariadb/data`
PIDFILE=${MYSQLDATA}/`/usr/bin/uname -n`.pid
if [ -z $SMF_FMRI ]; then
    echo "SMF framework variables are not initialized."
    exit $SMF_EXIT_ERR
fi
if [ -z ${MYSQLDATA} ]; then
    echo "mariadb/data property not set"
    exit $SMF_EXIT_ERR_CONFIG
fi
if [ ! -d ${MYSQLDATA} ]; then
    echo "mariadb/data directory ${MYSQLDATA} is not a valid MySQL data directory"
    exit $SMF_EXIT_ERR_CONFIG
fi
if [ ! -d ${MYSQLDATA}/mysql ]; then
    ${MYSQLBIN}/mysql_install_db --user=mysql --datadir=${MYSQLDATA}
fi
mysql_start()     {
    echo ${MYSQLBIN}/mysqld_safe --user=mysql --datadir=${MYSQLDATA} --pid-file=${PIDFILE}
    ${MYSQLBIN}/mysqld_safe --user=mysql --datadir=${MYSQLDATA} --pid-file=${PIDFILE} > /dev/null &
}
case "$1" in
'start')
    mysql_start
    ;;
*)
    echo "Usage: $0 {start}"
    exit 1
    ;;
esac
exit $SMF_EXIT_OK
components/database/mariadb-106/files/mariadb_106.xml
New file
@@ -0,0 +1,103 @@
<?xml version="1.0"?>
<!DOCTYPE service_bundle SYSTEM "/usr/share/lib/xml/dtd/service_bundle.dtd.1">
<!--
 Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
 CDDL HEADER START
 The contents of this file are subject to the terms of the
 Common Development and Distribution License (the "License").
 You may not use this file except in compliance with the License.
 You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
 or http://www.opensolaris.org/os/licensing.
 See the License for the specific language governing permissions
 and limitations under the License.
 When distributing Covered Code, include this CDDL HEADER in each
 file and include the License file at usr/src/OPENSOLARIS.LICENSE.
 If applicable, add the following below this CDDL HEADER, with the
 fields enclosed by brackets "[]" replaced with your own identifying
 information: Portions Copyright [yyyy] [name of copyright owner]
 CDDL HEADER END
        NOTE:  This service manifest is not editable; its contents will
        be overwritten by package or patch operations, including
        operating system upgrade.  Make customizations in a different
        file.
-->
<service_bundle type='manifest' name='mariadb'>
<service
        name='application/database/mariadb'
        type='service'
        version='1'>
    <!--
       Wait for network interfaces to be initialized.
    -->
        <dependency
                name='network'
                grouping='require_all'
                restart_on='none'
                type='service'>
                <service_fmri value='svc:/milestone/network:default' />
        </dependency>
    <!--
       Wait for all local filesystems to be mounted.
    -->
        <dependency
                name='filesystem-local'
                grouping='require_all'
                restart_on='none'
                type='service'>
                <service_fmri value='svc:/system/filesystem/local:default' />
        </dependency>
        <exec_method
                type='method'
                name='start'
                exec='/lib/svc/method/mariadb_106 start'
                timeout_seconds='60'>
                <method_context security_flags="aslr"/>
        </exec_method>
        <exec_method
                type='method'
                name='stop'
                exec=':kill'
                timeout_seconds='300' />
        <instance name='version_106' enabled='false'>
            <method_context working_directory='/var/mariadb/10.6'>
                    <method_credential user='mysql' group='mysql' />
            </method_context>
            <property_group  name='mariadb' type='application'>
                    <propval name='bin' type='astring'
                           value='/usr/mariadb/10.6/bin' />
                    <propval name='data' type='astring'
                           value='/var/mariadb/10.6/data' />
                        <propval name='value_authorization' type='astring'
                           value='solaris.smf.value.mariadb/version_106' />
                        <propval name='action_authorization' type='astring'
                           value='solaris.smf.manage.mariadb/version_106' />
            </property_group>
                <property_group name='general' type='framework'>
                        <propval name='action_authorization' type='astring' value='solaris.smf.manage.mariadb/version_106' />
                        <propval name='value_authorization' type='astring' value='solaris.smf.value.mariadb/version_106' />
                </property_group>
          </instance>
        <stability value='Evolving' />
</service>
</service_bundle>
components/database/mariadb-106/files/my-medium.cnf
New file
@@ -0,0 +1,150 @@
# Example MariaDB config file for medium systems.
#
# This is for a system with little memory (32M - 64M) where MariaDB plays
# an important part, or systems up to 128M where MariaDB is used together with
# other programs (such as a web server)
#
# MariaDB programs look for option files in a set of
# locations which depend on the deployment platform.
# You can copy this option file to one of those
# locations. For information about these locations, do:
# 'my_print_defaults --help' and see what is printed under
# Default options are read from the following files in the given order:
# More information at: http://dev.mysql.com/doc/mysql/en/option-files.html
#
# In this file, you can use all long options that a program supports.
# If you want to know which options a program supports, run the program
# with the "--help" option.
# The following options will be passed to all MariaDB clients
[client]
#password    = your_password
port        = 3306
socket        = /tmp/mariadb106.sock
# Here follows entries for some specific programs
# The MariaDB server
[mysqld]
port        = 3306
socket        = /tmp/mariadb106.sock
skip-external-locking
key_buffer_size = 16M
max_allowed_packet = 1M
table_open_cache = 64
sort_buffer_size = 512K
net_buffer_length = 8K
read_buffer_size = 256K
read_rnd_buffer_size = 512K
myisam_sort_buffer_size = 8M
# Point the following paths to different dedicated disks
#tmpdir        = /tmp/
# Don't listen on a TCP/IP port at all. This can be a security enhancement,
# if all processes that need to connect to mysqld run on the same host.
# All interaction with mysqld must be made via Unix sockets or named pipes.
# Note that using this option without enabling named pipes on Windows
# (via the "enable-named-pipe" option) will render mysqld useless!
#
#skip-networking
# Replication Master Server (default)
# binary logging is required for replication
log-bin=mysql-bin
# binary logging format - mixed recommended
binlog_format=mixed
# required unique id between 1 and 2^32 - 1
# defaults to 1 if master-host is not set
# but will not function as a master if omitted
server-id    = 1
# Replication Slave (comment out master section to use this)
#
# To configure this host as a replication slave, you can choose between
# two methods :
#
# 1) Use the CHANGE MASTER TO command (fully described in our manual) -
#    the syntax is:
#
#    CHANGE MASTER TO MASTER_HOST=<host>, MASTER_PORT=<port>,
#    MASTER_USER=<user>, MASTER_PASSWORD=<password> ;
#
#    where you replace <host>, <user>, <password> by quoted strings and
#    <port> by the master's port number (3306 by default).
#
#    Example:
#
#    CHANGE MASTER TO MASTER_HOST='125.564.12.1', MASTER_PORT=3306,
#    MASTER_USER='joe', MASTER_PASSWORD='secret';
#
# OR
#
# 2) Set the variables below. However, in case you choose this method, then
#    start replication for the first time (even unsuccessfully, for example
#    if you mistyped the password in master-password and the slave fails to
#    connect), the slave will create a master.info file, and any later
#    change in this file to the variables' values below will be ignored and
#    overridden by the content of the master.info file, unless you shutdown
#    the slave server, delete master.info and restart the slaver server.
#    For that reason, you may want to leave the lines below untouched
#    (commented) and instead use CHANGE MASTER TO (see above)
#
# required unique id between 2 and 2^32 - 1
# (and different from the master)
# defaults to 2 if master-host is set
# but will not function as a slave if omitted
#server-id       = 2
#
# The replication master for this slave - required
#master-host     =   <hostname>
#
# The username the slave will use for authentication when connecting
# to the master - required
#master-user     =   <username>
#
# The password the slave will authenticate with when connecting to
# the master - required
#master-password =   <password>
#
# The port the master is listening on.
# optional - defaults to 3306
#master-port     =  <port>
#
# binary logging - not required for slaves, but recommended
#log-bin=mysql-bin
# Uncomment the following if you are using InnoDB tables
innodb_data_home_dir = /var/mariadb/10.6/data
innodb_data_file_path = ibdata1:10M:autoextend
innodb_log_group_home_dir = /var/mariadb/10.6/data
# You can set .._buffer_pool_size up to 50 - 80 %
# of RAM but beware of setting memory usage too high
innodb_buffer_pool_size = 128M
# innodb_additional_mem_pool_size = 2M
# Set .._log_file_size to 25 % of buffer pool size
innodb_log_file_size = 32M
innodb_log_buffer_size = 8M
innodb_flush_log_at_trx_commit = 1
innodb_flush_method=O_DSYNC
innodb_lock_wait_timeout = 50
[mysqldump]
quick
max_allowed_packet = 16M
[mysql]
no-auto-rehash
# Remove the next comment character if you are not familiar with SQL
#safe-updates
[myisamchk]
key_buffer_size = 20M
sort_buffer_size = 20M
read_buffer = 2M
write_buffer = 2M
[mysqlhotcopy]
interactive-timeout
components/database/mariadb-106/files/prof_attr
New file
@@ -0,0 +1 @@
MariaDB Administration:RO:::auths=solaris.smf.manage.mariadb/version_106,solaris.smf.value.mariadb/version_106
components/database/mariadb-106/manifests/sample-manifest.p5m
New file
Diff too large
components/database/mariadb-106/mariadb-106.license
New file
@@ -0,0 +1,339 @@
            GNU GENERAL PUBLIC LICENSE
               Version 2, June 1991
 Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335 USA
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.
                Preamble
  The licenses for most software are designed to take away your
freedom to share and change it.  By contrast, the GNU General Public
License is intended to guarantee your freedom to share and change free
software--to make sure the software is free for all its users.  This
General Public License applies to most of the Free Software
Foundation's software and to any other program whose authors commit to
using it.  (Some other Free Software Foundation software is covered by
the GNU Lesser General Public License instead.)  You can apply it to
your programs, too.
  When we speak of free software, we are referring to freedom, not
price.  Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
this service if you wish), that you receive source code or can get it
if you want it, that you can change the software or use pieces of it
in new free programs; and that you know you can do these things.
  To protect your rights, we need to make restrictions that forbid
anyone to deny you these rights or to ask you to surrender the rights.
These restrictions translate to certain responsibilities for you if you
distribute copies of the software, or if you modify it.
  For example, if you distribute copies of such a program, whether
gratis or for a fee, you must give the recipients all the rights that
you have.  You must make sure that they, too, receive or can get the
source code.  And you must show them these terms so they know their
rights.
  We protect your rights with two steps: (1) copyright the software, and
(2) offer you this license which gives you legal permission to copy,
distribute and/or modify the software.
  Also, for each author's protection and ours, we want to make certain
that everyone understands that there is no warranty for this free
software.  If the software is modified by someone else and passed on, we
want its recipients to know that what they have is not the original, so
that any problems introduced by others will not reflect on the original
authors' reputations.
  Finally, any free program is threatened constantly by software
patents.  We wish to avoid the danger that redistributors of a free
program will individually obtain patent licenses, in effect making the
program proprietary.  To prevent this, we have made it clear that any
patent must be licensed for everyone's free use or not licensed at all.
  The precise terms and conditions for copying, distribution and
modification follow.
            GNU GENERAL PUBLIC LICENSE
   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
  0. This License applies to any program or other work which contains
a notice placed by the copyright holder saying it may be distributed
under the terms of this General Public License.  The "Program", below,
refers to any such program or work, and a "work based on the Program"
means either the Program or any derivative work under copyright law:
that is to say, a work containing the Program or a portion of it,
either verbatim or with modifications and/or translated into another
language.  (Hereinafter, translation is included without limitation in
the term "modification".)  Each licensee is addressed as "you".
Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope.  The act of
running the Program is not restricted, and the output from the Program
is covered only if its contents constitute a work based on the
Program (independent of having been made by running the Program).
Whether that is true depends on what the Program does.
  1. You may copy and distribute verbatim copies of the Program's
source code as you receive it, in any medium, provided that you
conspicuously and appropriately publish on each copy an appropriate
copyright notice and disclaimer of warranty; keep intact all the
notices that refer to this License and to the absence of any warranty;
and give any other recipients of the Program a copy of this License
along with the Program.
You may charge a fee for the physical act of transferring a copy, and
you may at your option offer warranty protection in exchange for a fee.
  2. You may modify your copy or copies of the Program or any portion
of it, thus forming a work based on the Program, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:
    a) You must cause the modified files to carry prominent notices
    stating that you changed the files and the date of any change.
    b) You must cause any work that you distribute or publish, that in
    whole or in part contains or is derived from the Program or any
    part thereof, to be licensed as a whole at no charge to all third
    parties under the terms of this License.
    c) If the modified program normally reads commands interactively
    when run, you must cause it, when started running for such
    interactive use in the most ordinary way, to print or display an
    announcement including an appropriate copyright notice and a
    notice that there is no warranty (or else, saying that you provide
    a warranty) and that users may redistribute the program under
    these conditions, and telling the user how to view a copy of this
    License.  (Exception: if the Program itself is interactive but
    does not normally print such an announcement, your work based on
    the Program is not required to print an announcement.)
These requirements apply to the modified work as a whole.  If
identifiable sections of that work are not derived from the Program,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works.  But when you
distribute the same sections as part of a whole which is a work based
on the Program, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote it.
Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Program.
In addition, mere aggregation of another work not based on the Program
with the Program (or with a work based on the Program) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.
  3. You may copy and distribute the Program (or a work based on it,
under Section 2) in object code or executable form under the terms of
Sections 1 and 2 above provided that you also do one of the following:
    a) Accompany it with the complete corresponding machine-readable
    source code, which must be distributed under the terms of Sections
    1 and 2 above on a medium customarily used for software interchange; or,
    b) Accompany it with a written offer, valid for at least three
    years, to give any third party, for a charge no more than your
    cost of physically performing source distribution, a complete
    machine-readable copy of the corresponding source code, to be
    distributed under the terms of Sections 1 and 2 above on a medium
    customarily used for software interchange; or,
    c) Accompany it with the information you received as to the offer
    to distribute corresponding source code.  (This alternative is
    allowed only for noncommercial distribution and only if you
    received the program in object code or executable form with such
    an offer, in accord with Subsection b above.)
The source code for a work means the preferred form of the work for
making modifications to it.  For an executable work, complete source
code means all the source code for all modules it contains, plus any
associated interface definition files, plus the scripts used to
control compilation and installation of the executable.  However, as a
special exception, the source code distributed need not include
anything that is normally distributed (in either source or binary
form) with the major components (compiler, kernel, and so on) of the
operating system on which the executable runs, unless that component
itself accompanies the executable.
If distribution of executable or object code is made by offering
access to copy from a designated place, then offering equivalent
access to copy the source code from the same place counts as
distribution of the source code, even though third parties are not
compelled to copy the source along with the object code.
  4. You may not copy, modify, sublicense, or distribute the Program
except as expressly provided under this License.  Any attempt
otherwise to copy, modify, sublicense or distribute the Program is
void, and will automatically terminate your rights under this License.
However, parties who have received copies, or rights, from you under
this License will not have their licenses terminated so long as such
parties remain in full compliance.
  5. You are not required to accept this License, since you have not
signed it.  However, nothing else grants you permission to modify or
distribute the Program or its derivative works.  These actions are
prohibited by law if you do not accept this License.  Therefore, by
modifying or distributing the Program (or any work based on the
Program), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Program or works based on it.
  6. Each time you redistribute the Program (or any work based on the
Program), the recipient automatically receives a license from the
original licensor to copy, distribute or modify the Program subject to
these terms and conditions.  You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties to
this License.
  7. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License.  If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Program at all.  For example, if a patent
license would not permit royalty-free redistribution of the Program by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Program.
If any portion of this section is held invalid or unenforceable under
any particular circumstance, the balance of the section is intended to
apply and the section as a whole is intended to apply in other
circumstances.
It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system, which is
implemented by public license practices.  Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.
This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.
  8. If the distribution and/or use of the Program is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Program under this License
may add an explicit geographical distribution limitation excluding
those countries, so that distribution is permitted only in or among
countries not thus excluded.  In such case, this License incorporates
the limitation as if written in the body of this License.
  9. The Free Software Foundation may publish revised and/or new versions
of the General Public License from time to time.  Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number.  If the Program
specifies a version number of this License which applies to it and "any
later version", you have the option of following the terms and conditions
either of that version or of any later version published by the Free
Software Foundation.  If the Program does not specify a version number of
this License, you may choose any version ever published by the Free Software
Foundation.
  10. If you wish to incorporate parts of the Program into other free
programs whose distribution conditions are different, write to the author
to ask for permission.  For software which is copyrighted by the Free
Software Foundation, write to the Free Software Foundation; we sometimes
make exceptions for this.  Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.
                NO WARRANTY
  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
REPAIR OR CORRECTION.
  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.
             END OF TERMS AND CONDITIONS
        How to Apply These Terms to Your New Programs
  If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
  To do so, attach the following notices to the program.  It is safest
to attach them to the start of each source file to most effectively
convey the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
    <one line to give the program's name and a brief idea of what it does.>
    Copyright (C) <year>  <name of author>
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.
    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.
    You should have received a copy of the GNU General Public License along
    with this program; if not, write to the Free Software Foundation, Inc.,
    51 Franklin Street, Fifth Floor, Boston, MA 02110-1335 USA.
Also add information on how to contact you by electronic and paper mail.
If the program is interactive, make it output a short notice like this
when it starts in an interactive mode:
    Gnomovision version 69, Copyright (C) year name of author
    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
    This is free software, and you are welcome to redistribute it
    under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License.  Of course, the commands you use may
be called something other than `show w' and `show c'; they could even be
mouse-clicks or menu items--whatever suits your program.
You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the program, if
necessary.  Here is a sample; alter the names:
  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
  `Gnomovision' (which makes passes at compilers) written by James Hacker.
  <signature of Ty Coon>, 1 April 1989
  Ty Coon, President of Vice
This General Public License does not permit incorporating your program into
proprietary programs.  If your program is a subroutine library, you may
consider it more useful to permit linking proprietary applications with the
library.  If this is what you want to do, use the GNU Lesser General
Public License instead of this License.
components/database/mariadb-106/mariadb-106.p5m
New file
@@ -0,0 +1,311 @@
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source.  A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
#
# Copyright 2013 Alexander Pyhalov.  All rights reserved.
# Copyright 2016-2017, Wiselabs Software Ltda - http://www.wiselabs.com.br . All rights reserved.
# Copyright 2018, Michal Nowak
# Copyright 2022 Daniel Bell
#
set name=pkg.fmri value=pkg:/database/mariadb-106@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
set name=pkg.human-version value=$(HUMAN_VERSION)
set name=pkg.summary value="MariaDB 10.6 Database Management System"
set name=info.classification value=org.opensolaris.category.2008:Development/Databases
set name=info.upstream-url value=$(COMPONENT_PROJECT_URL)
set name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
license mariadb-106.license license=GPLv2
<transform file path=usr.*/man/.+ -> default mangler.man.stability committed>
<transform file path=.*/bin/.+ -> default mode 0555>
dir path=var/mariadb group=mysql mode=0700 owner=mysql
dir path=var/mariadb/10.6 group=mysql mode=0700 owner=mysql
dir path=var/mariadb/10.6/data group=mysql mode=0700 owner=mysql
file files/my-medium.cnf path=etc/mariadb/10.6/my.cnf.d/default.cnf \
    mode=0644 preserve=renamenew
file path=etc/mariadb/10.6/my.cnf
file files/auth_attr path=etc/security/auth_attr.d/mariadb-106
file files/prof_attr path=etc/security/prof_attr.d/mariadb-106
file files/mariadb_106.xml \
    path=lib/svc/manifest/application/database/mariadb_106.xml
file files/mariadb_106 path=lib/svc/method/mariadb_106 mode=0555
link path=etc/mysql/my.cnf target=../mariadb/10.6/my.cnf mediator=mysql mediator-version=10.6 mediator-implementation=mariadb
link path=usr/mysql/bin target=../mariadb/10.6/bin mediator=mysql mediator-version=10.6 mediator-implementation=mariadb
link path=usr/mysql/docs target=../mariadb/10.6/docs mediator=mysql mediator-version=10.6 mediator-implementation=mariadb
link path=usr/mysql/man target=../mariadb/10.6/man mediator=mysql mediator-version=10.6 mediator-implementation=mariadb
link path=usr/mysql/share target=../mariadb/10.6/share mediator=mysql mediator-version=10.6 mediator-implementation=mariadb
link path=var/mysql/data target=../mariadb/10.6/data mediator=mysql mediator-version=10.6 mediator-implementation=mariadb
depend fmri=database/mysql-common type=require
depend fmri=database/mariadb-106/client@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION) type=require
file path=usr/mariadb/10.6/COPYING
file path=usr/mariadb/10.6/CREDITS
file path=usr/mariadb/10.6/INSTALL-BINARY
file path=usr/mariadb/10.6/README-wsrep
file path=usr/mariadb/10.6/README.md
file path=usr/mariadb/10.6/THIRDPARTY
file path=usr/mariadb/10.6/bin/aria_chk
file path=usr/mariadb/10.6/bin/aria_dump_log
file path=usr/mariadb/10.6/bin/aria_ftdump
file path=usr/mariadb/10.6/bin/aria_pack
file path=usr/mariadb/10.6/bin/aria_read_log
file path=usr/mariadb/10.6/bin/aria_s3_copy
file path=usr/mariadb/10.6/man/man1/aria_s3_copy.1
file path=usr/mariadb/10.6/bin/innochecksum
file path=usr/mariadb/10.6/bin/mbstream
file path=usr/mariadb/10.6/bin/myisamchk
file path=usr/mariadb/10.6/bin/myisam_ftdump
file path=usr/mariadb/10.6/bin/my_print_defaults
link path=usr/mariadb/10.6/bin/mariabackup target=mariadb-backup
file path=usr/mariadb/10.6/bin/mariadb-backup
file path=usr/mariadb/10.6/man/man1/mariadb-backup.1
link path=usr/mariadb/10.6/bin/mysql_fix_extensions target=mariadb-fix-extensions
file path=usr/mariadb/10.6/bin/mariadb-fix-extensions
file path=usr/mariadb/10.6/man/man1/mariadb-fix-extensions.1
file path=usr/mariadb/10.6/bin/mariadb-embedded
file path=usr/mariadb/10.6/man/man1/mariadb-embedded.1
file path=usr/mariadb/10.6/bin/mariadb-conv
file path=usr/mariadb/10.6/man/man1/mariadb-conv.1
link path=usr/mariadb/10.6/bin/mysql_install_db target=mariadb-install-db
file path=usr/mariadb/10.6/bin/mariadb-install-db
file path=usr/mariadb/10.6/man/man1/mariadb-install-db.1
link path=usr/mariadb/10.6/bin/mysqlhotcopy target=mariadb-hotcopy
file path=usr/mariadb/10.6/bin/mariadb-hotcopy
file path=usr/mariadb/10.6/man/man1/mariadb-hotcopy.1
link path=usr/mariadb/10.6/bin/mysql_plugin target=mariadb-plugin
file path=usr/mariadb/10.6/bin/mariadb-plugin
file path=usr/mariadb/10.6/man/man1/mariadb-plugin.1
link path=usr/mariadb/10.6/bin/mysql_secure_installation target=mariadb-secure-installation
file path=usr/mariadb/10.6/bin/mariadb-secure-installation
file path=usr/mariadb/10.6/man/man1/mariadb-secure-installation.1
link path=usr/mariadb/10.6/bin/mysql_upgrade target=mariadb-upgrade
file path=usr/mariadb/10.6/bin/mariadb-upgrade
file path=usr/mariadb/10.6/man/man1/mariadb-upgrade.1
link path=usr/mariadb/10.6/bin/mysqlbinlog target=mariadb-binlog
file path=usr/mariadb/10.6/bin/mariadb-binlog
file path=usr/mariadb/10.6/man/man1/mariadb-binlog.1
link path=usr/mariadb/10.6/bin/mysqld target=mariadbd
file path=usr/mariadb/10.6/bin/mariadbd
file path=usr/mariadb/10.6/man/man8/mariadbd.8
link path=usr/mariadb/10.6/bin/mysqld_multi target=mariadbd-multi
file path=usr/mariadb/10.6/bin/mariadbd-multi
file path=usr/mariadb/10.6/man/man1/mariadbd-multi.1
link path=usr/mariadb/10.6/bin/mysqld_safe target=mariadbd-safe
file path=usr/mariadb/10.6/bin/mariadbd-safe
file path=usr/mariadb/10.6/man/man1/mariadbd-safe.1
link path=usr/mariadb/10.6/bin/mysqld_safe_helper target=mariadbd-safe-helper
file path=usr/mariadb/10.6/bin/mariadbd-safe-helper
file path=usr/mariadb/10.6/man/man1/mariadbd-safe-helper.1
link path=usr/mariadb/10.6/bin/mariadb-config target=mariadb_config
file path=usr/mariadb/10.6/bin/mariadb_config
file path=usr/mariadb/10.6/man/man1/mariadb_config.1
file path=usr/mariadb/10.6/bin/myisamlog
file path=usr/mariadb/10.6/bin/myisampack
file path=usr/mariadb/10.6/bin/perror
file path=usr/mariadb/10.6/bin/replace
file path=usr/mariadb/10.6/bin/resolve_stack_dump
file path=usr/mariadb/10.6/bin/resolveip
file path=usr/mariadb/10.6/bin/wsrep_sst_backup
file path=usr/mariadb/10.6/bin/wsrep_sst_common
file path=usr/mariadb/10.6/bin/wsrep_sst_mariabackup
file path=usr/mariadb/10.6/man/man1/wsrep_sst_mariabackup.1
file path=usr/mariadb/10.6/bin/wsrep_sst_mysqldump
file path=usr/mariadb/10.6/bin/wsrep_sst_rsync
link path=usr/mariadb/10.6/bin/wsrep_sst_rsync_wan target=wsrep_sst_rsync
file path=usr/mariadb/10.6/man/man1/wsrep_sst_rsync_wan.1
dir  path=usr/mariadb/10.6/docs
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/auth_pam_tool_dir/auth_pam_tool
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/adt_null.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/auth_0x0100.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/auth_ed25519.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/auth_gssapi.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/auth_gssapi_client.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/auth_pam.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/auth_pam_v1.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/auth_test_plugin.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/caching_sha2_password.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/client_ed25519.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/cracklib_password_check.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/daemon_example.ini
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/debug_key_management.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/dialog.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/dialog_examples.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/example_key_management.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/file_key_management.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/func_test.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/ha_archive.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/ha_blackhole.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/ha_connect.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/ha_example.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/ha_federated.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/ha_federatedx.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/ha_s3.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/ha_sphinx.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/ha_spider.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/ha_test_sql_discovery.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/handlersocket.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/libdaemon_example.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/locales.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/metadata_lock_info.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/mypluglib.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/mysql_clear_password.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/qa_auth_client.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/qa_auth_interface.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/qa_auth_server.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/query_cache_info.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/query_response_time.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/server_audit.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/sha256_password.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/simple_password_check.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/sql_errlog.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/type_mysql_json.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/test_sql_service.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/type_test.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/test_versioning.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/wsrep_info.so
file path=usr/mariadb/10.6/lib/$(MACH64)/plugin/zstd.so
file path=usr/mariadb/10.6/man/man1/aria_chk.1
file path=usr/mariadb/10.6/man/man1/aria_dump_log.1
file path=usr/mariadb/10.6/man/man1/aria_ftdump.1
file path=usr/mariadb/10.6/man/man1/aria_pack.1
file path=usr/mariadb/10.6/man/man1/aria_read_log.1
file path=usr/mariadb/10.6/man/man1/galera_new_cluster.1
file path=usr/mariadb/10.6/man/man1/galera_recovery.1
file path=usr/mariadb/10.6/man/man1/innochecksum.1
file path=usr/mariadb/10.6/man/man1/mariabackup.1
file path=usr/mariadb/10.6/man/man1/mariadb-service-convert.1
file path=usr/mariadb/10.6/man/man1/mbstream.1
file path=usr/mariadb/10.6/man/man1/my_print_defaults.1
file path=usr/mariadb/10.6/man/man1/my_safe_process.1
file path=usr/mariadb/10.6/man/man1/myisam_ftdump.1
file path=usr/mariadb/10.6/man/man1/myisamchk.1
file path=usr/mariadb/10.6/man/man1/myisamlog.1
file path=usr/mariadb/10.6/man/man1/myisampack.1
file path=usr/mariadb/10.6/man/man1/mysql.server.1
file path=usr/mariadb/10.6/man/man1/mysql_fix_extensions.1
file path=usr/mariadb/10.6/man/man1/mysql_install_db.1
file path=usr/mariadb/10.6/man/man1/mysql_plugin.1
file path=usr/mariadb/10.6/man/man1/mysql_secure_installation.1
file path=usr/mariadb/10.6/man/man1/mysql_upgrade.1
file path=usr/mariadb/10.6/man/man1/mysqlbinlog.1
file path=usr/mariadb/10.6/man/man1/mysqld_multi.1
file path=usr/mariadb/10.6/man/man1/mysqld_safe.1
file path=usr/mariadb/10.6/man/man1/mysqld_safe_helper.1
file path=usr/mariadb/10.6/man/man1/mysqlhotcopy.1
file path=usr/mariadb/10.6/man/man1/perror.1
file path=usr/mariadb/10.6/man/man1/replace.1
file path=usr/mariadb/10.6/man/man1/resolve_stack_dump.1
file path=usr/mariadb/10.6/man/man1/resolveip.1
file path=usr/mariadb/10.6/man/man1/wsrep_sst_common.1
file path=usr/mariadb/10.6/man/man1/wsrep_sst_mysqldump.1
file path=usr/mariadb/10.6/man/man1/wsrep_sst_rsync.1
file path=usr/mariadb/10.6/man/man8/mysqld.8
file path=usr/mariadb/10.6/share/JavaWrappers.jar
file path=usr/mariadb/10.6/share/JdbcInterface.jar
file path=usr/mariadb/10.6/share/Mongo2.jar
file path=usr/mariadb/10.6/share/Mongo3.jar
file path=usr/mariadb/10.6/share/charsets/Index.xml
file path=usr/mariadb/10.6/share/charsets/README
file path=usr/mariadb/10.6/share/charsets/armscii8.xml
file path=usr/mariadb/10.6/share/charsets/ascii.xml
file path=usr/mariadb/10.6/share/charsets/cp1250.xml
file path=usr/mariadb/10.6/share/charsets/cp1251.xml
file path=usr/mariadb/10.6/share/charsets/cp1256.xml
file path=usr/mariadb/10.6/share/charsets/cp1257.xml
file path=usr/mariadb/10.6/share/charsets/cp850.xml
file path=usr/mariadb/10.6/share/charsets/cp852.xml
file path=usr/mariadb/10.6/share/charsets/cp866.xml
file path=usr/mariadb/10.6/share/charsets/dec8.xml
file path=usr/mariadb/10.6/share/charsets/geostd8.xml
file path=usr/mariadb/10.6/share/charsets/greek.xml
file path=usr/mariadb/10.6/share/charsets/hebrew.xml
file path=usr/mariadb/10.6/share/charsets/hp8.xml
file path=usr/mariadb/10.6/share/charsets/keybcs2.xml
file path=usr/mariadb/10.6/share/charsets/koi8r.xml
file path=usr/mariadb/10.6/share/charsets/koi8u.xml
file path=usr/mariadb/10.6/share/charsets/latin1.xml
file path=usr/mariadb/10.6/share/charsets/latin2.xml
file path=usr/mariadb/10.6/share/charsets/latin5.xml
file path=usr/mariadb/10.6/share/charsets/latin7.xml
file path=usr/mariadb/10.6/share/charsets/macce.xml
file path=usr/mariadb/10.6/share/charsets/macroman.xml
file path=usr/mariadb/10.6/share/charsets/swe7.xml
file path=usr/mariadb/10.6/share/czech/errmsg.sys
file path=usr/mariadb/10.6/share/danish/errmsg.sys
file path=usr/mariadb/10.6/share/dutch/errmsg.sys
file path=usr/mariadb/10.6/share/english/errmsg.sys
file path=usr/mariadb/10.6/share/errmsg-utf8.txt
file path=usr/mariadb/10.6/share/estonian/errmsg.sys
file path=usr/mariadb/10.6/share/fill_help_tables.sql
file path=usr/mariadb/10.6/share/mysql_sys_schema.sql
file path=usr/mariadb/10.6/share/french/errmsg.sys
file path=usr/mariadb/10.6/share/german/errmsg.sys
file path=usr/mariadb/10.6/share/greek/errmsg.sys
file path=usr/mariadb/10.6/share/hindi/errmsg.sys
file path=usr/mariadb/10.6/share/hungarian/errmsg.sys
file path=usr/mariadb/10.6/share/italian/errmsg.sys
file path=usr/mariadb/10.6/share/japanese/errmsg.sys
file path=usr/mariadb/10.6/share/korean/errmsg.sys
file path=usr/mariadb/10.6/share/maria_add_gis_sp.sql
file path=usr/mariadb/10.6/share/maria_add_gis_sp_bootstrap.sql
file path=usr/mariadb/10.6/share/mysql/binary-configure mode=0555
file path=usr/mariadb/10.6/share/mysql/magic
file path=usr/mariadb/10.6/share/mysql/mysql-log-rotate mode=0555
file path=usr/mariadb/10.6/share/mysql/mysql.server mode=0555
file path=usr/mariadb/10.6/share/mysql/mysqld_multi.server mode=0555
file path=usr/mariadb/10.6/share/mysql/wsrep.cnf
file path=usr/mariadb/10.6/share/mysql/wsrep_notify
file path=usr/mariadb/10.6/share/mysql_performance_tables.sql
file path=usr/mariadb/10.6/share/mysql_system_tables.sql
file path=usr/mariadb/10.6/share/mysql_system_tables_data.sql
file path=usr/mariadb/10.6/share/mysql_test_data_timezone.sql
file path=usr/mariadb/10.6/share/mysql_test_db.sql
file path=usr/mariadb/10.6/share/norwegian-ny/errmsg.sys
file path=usr/mariadb/10.6/share/norwegian/errmsg.sys
file path=usr/mariadb/10.6/share/polish/errmsg.sys
file path=usr/mariadb/10.6/share/portuguese/errmsg.sys
file path=usr/mariadb/10.6/share/romanian/errmsg.sys
file path=usr/mariadb/10.6/share/russian/errmsg.sys
file path=usr/mariadb/10.6/share/serbian/errmsg.sys
file path=usr/mariadb/10.6/share/slovak/errmsg.sys
file path=usr/mariadb/10.6/share/spanish/errmsg.sys
file path=usr/mariadb/10.6/share/swedish/errmsg.sys
file path=usr/mariadb/10.6/share/ukrainian/errmsg.sys
file path=usr/mariadb/10.6/share/bulgarian/errmsg.sys
file path=usr/mariadb/10.6/share/chinese/errmsg.sys
components/database/mariadb-106/mariadb-106client.p5m
New file
@@ -0,0 +1,119 @@
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source.  A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
#
# Copyright 2013 Alexander Pyhalov.  All rights reserved.
# Copyright 2016-2017, Wiselabs Software Ltda - http://www.wiselabs.com.br . All rights reserved.
# Copyright 2018, Michal Nowak
# Copyright 2022, Daniel Bell
#
set name=pkg.fmri \
    value=pkg:/database/mariadb-106/client@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
set name=pkg.human-version value=$(HUMAN_VERSION)
set name=pkg.summary \
    value="MariaDB 10.6 Database Management System - client tools"
set name=info.classification \
    value=org.opensolaris.category.2008:Development/Databases
set name=info.upstream-url value=$(COMPONENT_PROJECT_URL)
set name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
<transform file path=usr.*/man/.+ -> default mangler.man.stability committed>
<transform file path=.*/bin/.+ -> default mode 0555>
license mariadb-106.license license=GPLv2
link path=usr/bin/mysql target=../mariadb/10.6/bin/mysql mediator=mysql mediator-version=10.6 mediator-implementation=mariadb
link path=usr/bin/mysql_config target=../mariadb/10.6/bin/mysql_config mediator=mysql mediator-version=10.6 mediator-implementation=mariadb
link path=usr/share/man/man1/mysql.1 target=../../../mariadb/10.6/man/man1/mysql.1 mediator=mysql mediator-version=10.6 mediator-implementation=mariadb
link path=usr/share/man/man1/mysql_config.1 target=../../../mariadb/10.6/man/man1/mysql_config.1 mediator=mysql mediator-version=10.6 mediator-implementation=mariadb
depend fmri=database/mysql-common type=require
file path=usr/mariadb/10.6/bin/mytop mode=0555
file path=usr/mariadb/10.6/bin/msql2mysql mode=0555
link path=usr/mariadb/10.6/bin/mysql target=mariadb
file path=usr/mariadb/10.6/bin/mariadb mode=0555
file path=usr/mariadb/10.6/man/man1/mariadb.1
link path=usr/mariadb/10.6/bin/mysql_convert_table_format target=mariadb-convert-table-format
file path=usr/mariadb/10.6/bin/mariadb-convert-table-format mode=0555
file path=usr/mariadb/10.6/man/man1/mariadb-convert-table-format.1
link path=usr/mariadb/10.6/bin/mysql_find_rows target=mariadb-find-rows
file path=usr/mariadb/10.6/bin/mariadb-find-rows mode=0555
file path=usr/mariadb/10.6/man/man1/mariadb-find-rows.1
link path=usr/mariadb/10.6/bin/mysql_setpermission target=mariadb-setpermission
file path=usr/mariadb/10.6/bin/mariadb-setpermission mode=0555
file path=usr/mariadb/10.6/man/man1/mariadb-setpermission.1
link path=usr/mariadb/10.6/bin/mysql_tzinfo_to_sql target=mariadb-tzinfo-to-sql
file path=usr/mariadb/10.6/bin/mariadb-tzinfo-to-sql mode=0555
file path=usr/mariadb/10.6/man/man1/mariadb-tzinfo-to-sql.1
link path=usr/mariadb/10.6/bin/mysql_waitpid target=mariadb-waitpid
file path=usr/mariadb/10.6/bin/mariadb-waitpid mode=0555
file path=usr/mariadb/10.6/man/man1/mariadb-waitpid.1
link path=usr/mariadb/10.6/bin/mysqlaccess target=mariadb-access
file path=usr/mariadb/10.6/bin/mariadb-access mode=0555
file path=usr/mariadb/10.6/man/man1/mariadb-access.1
link path=usr/mariadb/10.6/bin/mysqladmin target=mariadb-admin
file path=usr/mariadb/10.6/bin/mariadb-admin mode=0555
file path=usr/mariadb/10.6/man/man1/mariadb-admin.1
link path=usr/mariadb/10.6/bin/mysqlcheck target=mariadb-check
file path=usr/mariadb/10.6/bin/mariadb-check mode=0555
file path=usr/mariadb/10.6/man/man1/mariadb-check.1
link path=usr/mariadb/10.6/bin/mysqldump target=mariadb-dump
file path=usr/mariadb/10.6/bin/mariadb-dump mode=0555
file path=usr/mariadb/10.6/man/man1/mariadb-dump.1
link path=usr/mariadb/10.6/bin/mysqldumpslow target=mariadb-dumpslow
file path=usr/mariadb/10.6/bin/mariadb-dumpslow mode=0555
file path=usr/mariadb/10.6/man/man1/mariadb-dumpslow.1
link path=usr/mariadb/10.6/bin/mysqlimport target=mariadb-import
file path=usr/mariadb/10.6/bin/mariadb-import mode=0555
file path=usr/mariadb/10.6/man/man1/mariadb-import.1
link path=usr/mariadb/10.6/bin/mysqlshow target=mariadb-show
file path=usr/mariadb/10.6/bin/mariadb-show mode=0555
file path=usr/mariadb/10.6/man/man1/mariadb-show.1
link path=usr/mariadb/10.6/bin/mysqlslap target=mariadb-slap
file path=usr/mariadb/10.6/bin/mariadb-slap mode=0555
file path=usr/mariadb/10.6/man/man1/mariadb-slap.1
file path=usr/mariadb/10.6/bin/mysql_config mode=0555
file path=usr/mariadb/10.6/bin/test-connect-t
file path=usr/mariadb/10.6/man/man1/msql2mysql.1
file path=usr/mariadb/10.6/man/man1/mysql.1
file path=usr/mariadb/10.6/man/man1/mysql_config.1
file path=usr/mariadb/10.6/man/man1/mysql_convert_table_format.1
file path=usr/mariadb/10.6/man/man1/mysql_find_rows.1
file path=usr/mariadb/10.6/man/man1/mysql_setpermission.1
file path=usr/mariadb/10.6/man/man1/mysql_tzinfo_to_sql.1
file path=usr/mariadb/10.6/man/man1/mysql_waitpid.1
file path=usr/mariadb/10.6/man/man1/mysqlaccess.1
file path=usr/mariadb/10.6/man/man1/mysqladmin.1
file path=usr/mariadb/10.6/man/man1/mysqlcheck.1
file path=usr/mariadb/10.6/man/man1/mysqldump.1
file path=usr/mariadb/10.6/man/man1/mysqldumpslow.1
file path=usr/mariadb/10.6/man/man1/mysqlimport.1
file path=usr/mariadb/10.6/man/man1/mysqlshow.1
file path=usr/mariadb/10.6/man/man1/mysqlslap.1
file path=usr/mariadb/10.6/man/man1/mytop.1
components/database/mariadb-106/mariadb-106lib.p5m
New file
@@ -0,0 +1,614 @@
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source.  A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
#
# Copyright 2013 Alexander Pyhalov.  All rights reserved.
# Copyright 2016-2017, Wiselabs Software Ltda - http://www.wiselabs.com.br . All rights reserved.
# Copyright 2019 Michal Nowak
# Copyright 2022 Daniel Bell
#
set name=pkg.fmri value=pkg:/database/mariadb-106/library@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
set name=pkg.human-version value=$(HUMAN_VERSION)
set name=pkg.summary value="MariaDB 10.6 libraries"
set name=info.classification value=org.opensolaris.category.2008:Development/Databases
set name=info.upstream-url value=$(COMPONENT_PROJECT_URL)
set name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
license mariadb-106.license license=GPLv2
link path=usr/mysql/lib target=../mariadb/10.6/lib mediator=mysql mediator-version=10.6 mediator-implementation=mariadb
link path=usr/mysql/include target=../mariadb/10.6/include mediator=mysql mediator-version=10.6 mediator-implementation=mariadb
link path=usr/mariadb/10.6/include/mysql target=.
file path=usr/mariadb/10.6/include/errmsg.h
file path=usr/mariadb/10.6/include/ma_list.h
file path=usr/mariadb/10.6/include/ma_pvio.h
file path=usr/mariadb/10.6/include/ma_tls.h
file path=usr/mariadb/10.6/include/mariadb/ma_io.h
file path=usr/mariadb/10.6/include/mariadb_com.h
file path=usr/mariadb/10.6/include/mariadb_ctype.h
file path=usr/mariadb/10.6/include/mariadb_dyncol.h
file path=usr/mariadb/10.6/include/mariadb_rpl.h
file path=usr/mariadb/10.6/include/mariadb_stmt.h
file path=usr/mariadb/10.6/include/mariadb_version.h
file path=usr/mariadb/10.6/include/my_config.h mode=0444
file path=usr/mariadb/10.6/include/my_global.h
file path=usr/mariadb/10.6/include/my_sys.h
file path=usr/mariadb/10.6/include/mysql.h mode=0444
#file path=usr/mariadb/10.6/include/mysql/client_plugin.h
#file path=usr/mariadb/10.6/include/mysql/plugin_auth.h
#file path=usr/mariadb/10.6/include/mysql/plugin_auth_common.h
file path=usr/mariadb/10.6/include/mysql_com.h
file path=usr/mariadb/10.6/include/mysql_version.h mode=0444
file path=usr/mariadb/10.6/include/mysqld_error.h mode=0444
file path=usr/mariadb/10.6/include/server/big_endian.h
file path=usr/mariadb/10.6/include/server/byte_order_generic.h
file path=usr/mariadb/10.6/include/server/byte_order_generic_x86.h
file path=usr/mariadb/10.6/include/server/byte_order_generic_x86_64.h
file path=usr/mariadb/10.6/include/server/decimal.h
file path=usr/mariadb/10.6/include/server/errmsg.h
file path=usr/mariadb/10.6/include/server/handler_ername.h
file path=usr/mariadb/10.6/include/server/handler_state.h
file path=usr/mariadb/10.6/include/server/json_lib.h
file path=usr/mariadb/10.6/include/server/keycache.h
file path=usr/mariadb/10.6/include/server/little_endian.h
file path=usr/mariadb/10.6/include/server/m_ctype.h
file path=usr/mariadb/10.6/include/server/m_string.h
file path=usr/mariadb/10.6/include/server/ma_dyncol.h
file path=usr/mariadb/10.6/include/server/my_alloc.h
file path=usr/mariadb/10.6/include/server/my_attribute.h
file path=usr/mariadb/10.6/include/server/my_byteorder.h
file path=usr/mariadb/10.6/include/server/my_compiler.h
file path=usr/mariadb/10.6/include/server/my_config.h
file path=usr/mariadb/10.6/include/server/my_dbug.h
file path=usr/mariadb/10.6/include/server/my_decimal_limits.h
file path=usr/mariadb/10.6/include/server/my_dir.h
file path=usr/mariadb/10.6/include/server/my_getopt.h
file path=usr/mariadb/10.6/include/server/my_global.h
file path=usr/mariadb/10.6/include/server/my_list.h
file path=usr/mariadb/10.6/include/server/my_net.h
file path=usr/mariadb/10.6/include/server/my_pthread.h
file path=usr/mariadb/10.6/include/server/my_sys.h
file path=usr/mariadb/10.6/include/server/my_valgrind.h
file path=usr/mariadb/10.6/include/server/my_xml.h
file path=usr/mariadb/10.6/include/server/mysql.h
file path=usr/mariadb/10.6/include/server/mysql/auth_dialog_client.h
file path=usr/mariadb/10.6/include/server/mysql/client_plugin.h
file path=usr/mariadb/10.6/include/server/mysql/plugin.h
file path=usr/mariadb/10.6/include/server/mysql/plugin_audit.h
file path=usr/mariadb/10.6/include/server/mysql/plugin_auth.h
file path=usr/mariadb/10.6/include/server/mysql/plugin_auth_common.h
file path=usr/mariadb/10.6/include/server/mysql/plugin_encryption.h
file path=usr/mariadb/10.6/include/server/mysql/plugin_ftparser.h
file path=usr/mariadb/10.6/include/server/mysql/plugin_password_validation.h
file path=usr/mariadb/10.6/include/server/mysql/psi/mysql_file.h
file path=usr/mariadb/10.6/include/server/mysql/psi/mysql_idle.h
file path=usr/mariadb/10.6/include/server/mysql/psi/mysql_socket.h
file path=usr/mariadb/10.6/include/server/mysql/psi/mysql_stage.h
file path=usr/mariadb/10.6/include/server/mysql/psi/mysql_statement.h
file path=usr/mariadb/10.6/include/server/mysql/psi/mysql_table.h
file path=usr/mariadb/10.6/include/server/mysql/psi/mysql_thread.h
file path=usr/mariadb/10.6/include/server/mysql/psi/psi.h
file path=usr/mariadb/10.6/include/server/mysql/psi/psi_abi_v0.h
file path=usr/mariadb/10.6/include/server/mysql/psi/psi_abi_v1.h
file path=usr/mariadb/10.6/include/server/mysql/psi/psi_abi_v2.h
file path=usr/mariadb/10.6/include/server/mysql/psi/psi_base.h
file path=usr/mariadb/10.6/include/server/mysql/psi/psi_memory.h
file path=usr/mariadb/10.6/include/server/mysql/service_base64.h
file path=usr/mariadb/10.6/include/server/mysql/service_debug_sync.h
file path=usr/mariadb/10.6/include/server/mysql/service_encryption.h
file path=usr/mariadb/10.6/include/server/mysql/service_encryption_scheme.h
file path=usr/mariadb/10.6/include/server/mysql/service_kill_statement.h
file path=usr/mariadb/10.6/include/server/mysql/service_logger.h
file path=usr/mariadb/10.6/include/server/mysql/service_md5.h
file path=usr/mariadb/10.6/include/server/mysql/service_my_crypt.h
file path=usr/mariadb/10.6/include/server/mysql/service_my_print_error.h
file path=usr/mariadb/10.6/include/server/mysql/service_my_snprintf.h
file path=usr/mariadb/10.6/include/server/mysql/service_progress_report.h
file path=usr/mariadb/10.6/include/server/mysql/service_sha1.h
file path=usr/mariadb/10.6/include/server/mysql/service_sha2.h
file path=usr/mariadb/10.6/include/server/mysql/service_thd_alloc.h
file path=usr/mariadb/10.6/include/server/mysql/service_thd_autoinc.h
file path=usr/mariadb/10.6/include/server/mysql/service_thd_error_context.h
file path=usr/mariadb/10.6/include/server/mysql/service_thd_rnd.h
file path=usr/mariadb/10.6/include/server/mysql/service_thd_specifics.h
file path=usr/mariadb/10.6/include/server/mysql/service_thd_timezone.h
file path=usr/mariadb/10.6/include/server/mysql/service_thd_wait.h
file path=usr/mariadb/10.6/include/server/mysql/service_wsrep.h
file path=usr/mariadb/10.6/include/server/mysql/services.h
file path=usr/mariadb/10.6/include/server/mysql_com.h
file path=usr/mariadb/10.6/include/server/mysql_com_server.h
file path=usr/mariadb/10.6/include/server/mysql_embed.h
file path=usr/mariadb/10.6/include/server/mysql_time.h
file path=usr/mariadb/10.6/include/server/mysql_version.h
file path=usr/mariadb/10.6/include/server/mysqld_ername.h mode=0444
file path=usr/mariadb/10.6/include/server/mysqld_error.h
file path=usr/mariadb/10.6/include/server/pack.h
file path=usr/mariadb/10.6/include/server/private/atomic/gcc_builtins.h
file path=usr/mariadb/10.6/include/server/private/atomic/generic-msvc.h
file path=usr/mariadb/10.6/include/server/private/atomic/solaris.h
file path=usr/mariadb/10.6/include/server/private/authors.h
file path=usr/mariadb/10.6/include/server/private/bounded_queue.h
file path=usr/mariadb/10.6/include/server/private/client_settings.h
file path=usr/mariadb/10.6/include/server/private/compat56.h
file path=usr/mariadb/10.6/include/server/private/config.h
file path=usr/mariadb/10.6/include/server/private/contributors.h
file path=usr/mariadb/10.6/include/server/private/create_options.h
file path=usr/mariadb/10.6/include/server/private/custom_conf.h
file path=usr/mariadb/10.6/include/server/private/datadict.h
file path=usr/mariadb/10.6/include/server/private/debug_sync.h
file path=usr/mariadb/10.6/include/server/private/derror.h
file path=usr/mariadb/10.6/include/server/private/des_key_file.h
file path=usr/mariadb/10.6/include/server/private/discover.h
file path=usr/mariadb/10.6/include/server/private/dur_prop.h
file path=usr/mariadb/10.6/include/server/private/embedded_priv.h
file path=usr/mariadb/10.6/include/server/private/event_data_objects.h
file path=usr/mariadb/10.6/include/server/private/event_db_repository.h
file path=usr/mariadb/10.6/include/server/private/event_parse_data.h
file path=usr/mariadb/10.6/include/server/private/event_queue.h
file path=usr/mariadb/10.6/include/server/private/event_scheduler.h
file path=usr/mariadb/10.6/include/server/private/events.h
file path=usr/mariadb/10.6/include/server/private/field.h
file path=usr/mariadb/10.6/include/server/private/field_comp.h
file path=usr/mariadb/10.6/include/server/private/filesort.h
file path=usr/mariadb/10.6/include/server/private/filesort_utils.h
file path=usr/mariadb/10.6/include/server/private/ft_global.h
file path=usr/mariadb/10.6/include/server/private/gcalc_slicescan.h
file path=usr/mariadb/10.6/include/server/private/gcalc_tools.h
file path=usr/mariadb/10.6/include/server/private/group_by_handler.h
file path=usr/mariadb/10.6/include/server/private/gstream.h
file path=usr/mariadb/10.6/include/server/private/ha_partition.h
file path=usr/mariadb/10.6/include/server/private/ha_sequence.h
file path=usr/mariadb/10.6/include/server/private/handler.h
file path=usr/mariadb/10.6/include/server/private/hash.h
file path=usr/mariadb/10.6/include/server/private/hash_filo.h
file path=usr/mariadb/10.6/include/server/private/heap.h
file path=usr/mariadb/10.6/include/server/private/hostname.h
file path=usr/mariadb/10.6/include/server/private/ilist.h
file path=usr/mariadb/10.6/include/server/private/init.h
file path=usr/mariadb/10.6/include/server/private/innodb_priv.h
file path=usr/mariadb/10.6/include/server/private/item.h
file path=usr/mariadb/10.6/include/server/private/item_cmpfunc.h
file path=usr/mariadb/10.6/include/server/private/item_create.h
file path=usr/mariadb/10.6/include/server/private/item_func.h
file path=usr/mariadb/10.6/include/server/private/item_geofunc.h
file path=usr/mariadb/10.6/include/server/private/item_jsonfunc.h
file path=usr/mariadb/10.6/include/server/private/item_row.h
file path=usr/mariadb/10.6/include/server/private/item_strfunc.h
file path=usr/mariadb/10.6/include/server/private/item_subselect.h
file path=usr/mariadb/10.6/include/server/private/item_sum.h
file path=usr/mariadb/10.6/include/server/private/item_timefunc.h
file path=usr/mariadb/10.6/include/server/private/item_vers.h
file path=usr/mariadb/10.6/include/server/private/item_windowfunc.h
file path=usr/mariadb/10.6/include/server/private/item_xmlfunc.h
file path=usr/mariadb/10.6/include/server/private/key.h
file path=usr/mariadb/10.6/include/server/private/keycaches.h
file path=usr/mariadb/10.6/include/server/private/lex.h
file path=usr/mariadb/10.6/include/server/private/lex_string.h
file path=usr/mariadb/10.6/include/server/private/lex_symbol.h
file path=usr/mariadb/10.6/include/server/private/lf.h
file path=usr/mariadb/10.6/include/server/private/lock.h
file path=usr/mariadb/10.6/include/server/private/log.h
file path=usr/mariadb/10.6/include/server/private/log_event.h
file path=usr/mariadb/10.6/include/server/private/log_event_old.h
file path=usr/mariadb/10.6/include/server/private/log_slow.h
file path=usr/mariadb/10.6/include/server/private/maria.h
file path=usr/mariadb/10.6/include/server/private/mariadb.h
file path=usr/mariadb/10.6/include/server/private/mdl.h
file path=usr/mariadb/10.6/include/server/private/mem_root_array.h
file path=usr/mariadb/10.6/include/server/private/message.h
file path=usr/mariadb/10.6/include/server/private/multi_range_read.h
file path=usr/mariadb/10.6/include/server/private/my_alarm.h
file path=usr/mariadb/10.6/include/server/private/my_apc.h
file path=usr/mariadb/10.6/include/server/private/my_atomic.h
file path=usr/mariadb/10.6/include/server/private/my_base.h
file path=usr/mariadb/10.6/include/server/private/my_bit.h
file path=usr/mariadb/10.6/include/server/private/my_bitmap.h
file path=usr/mariadb/10.6/include/server/private/my_check_opt.h
file path=usr/mariadb/10.6/include/server/private/my_compare.h
file path=usr/mariadb/10.6/include/server/private/my_cpu.h
file path=usr/mariadb/10.6/include/server/private/my_crypt.h
file path=usr/mariadb/10.6/include/server/private/my_decimal.h
file path=usr/mariadb/10.6/include/server/private/my_default.h
file path=usr/mariadb/10.6/include/server/private/my_handler_errors.h
file path=usr/mariadb/10.6/include/server/private/my_json_writer.h
file path=usr/mariadb/10.6/include/server/private/my_libwrap.h
file path=usr/mariadb/10.6/include/server/private/my_md5.h
file path=usr/mariadb/10.6/include/server/private/my_minidump.h
file path=usr/mariadb/10.6/include/server/private/my_nosys.h
file path=usr/mariadb/10.6/include/server/private/my_rdtsc.h
file path=usr/mariadb/10.6/include/server/private/my_rnd.h
file path=usr/mariadb/10.6/include/server/private/my_service_manager.h
file path=usr/mariadb/10.6/include/server/private/my_stacktrace.h
file path=usr/mariadb/10.6/include/server/private/my_time.h
file path=usr/mariadb/10.6/include/server/private/my_tree.h
file path=usr/mariadb/10.6/include/server/private/my_uctype.h
file path=usr/mariadb/10.6/include/server/private/my_user.h
file path=usr/mariadb/10.6/include/server/private/myisam.h
file path=usr/mariadb/10.6/include/server/private/myisamchk.h
file path=usr/mariadb/10.6/include/server/private/myisammrg.h
file path=usr/mariadb/10.6/include/server/private/myisampack.h
file path=usr/mariadb/10.6/include/server/private/mysqld.h
file path=usr/mariadb/10.6/include/server/private/mysqld_default_groups.h
file path=usr/mariadb/10.6/include/server/private/mysqld_suffix.h
file path=usr/mariadb/10.6/include/server/private/mysys_err.h
file path=usr/mariadb/10.6/include/server/private/opt_range.h
file path=usr/mariadb/10.6/include/server/private/opt_subselect.h
file path=usr/mariadb/10.6/include/server/private/parse_file.h
file path=usr/mariadb/10.6/include/server/private/partition_element.h
file path=usr/mariadb/10.6/include/server/private/partition_info.h
file path=usr/mariadb/10.6/include/server/private/password.h
file path=usr/mariadb/10.6/include/server/private/probes_mysql.h
file path=usr/mariadb/10.6/include/server/private/probes_mysql_dtrace.h
file path=usr/mariadb/10.6/include/server/private/probes_mysql_nodtrace.h
file path=usr/mariadb/10.6/include/server/private/procedure.h
file path=usr/mariadb/10.6/include/server/private/protocol.h
file path=usr/mariadb/10.6/include/server/private/proxy_protocol.h
file path=usr/mariadb/10.6/include/server/private/queues.h
file path=usr/mariadb/10.6/include/server/private/records.h
file path=usr/mariadb/10.6/include/server/private/repl_failsafe.h
file path=usr/mariadb/10.6/include/server/private/replication.h
file path=usr/mariadb/10.6/include/server/private/rijndael.h
file path=usr/mariadb/10.6/include/server/private/rpl_constants.h
file path=usr/mariadb/10.6/include/server/private/rpl_filter.h
file path=usr/mariadb/10.6/include/server/private/rpl_gtid.h
file path=usr/mariadb/10.6/include/server/private/rpl_injector.h
file path=usr/mariadb/10.6/include/server/private/rpl_mi.h
file path=usr/mariadb/10.6/include/server/private/rpl_parallel.h
file path=usr/mariadb/10.6/include/server/private/rpl_record.h
file path=usr/mariadb/10.6/include/server/private/rpl_record_old.h
file path=usr/mariadb/10.6/include/server/private/rpl_reporting.h
file path=usr/mariadb/10.6/include/server/private/rpl_rli.h
file path=usr/mariadb/10.6/include/server/private/rpl_tblmap.h
file path=usr/mariadb/10.6/include/server/private/rpl_utility.h
file path=usr/mariadb/10.6/include/server/private/scheduler.h
file path=usr/mariadb/10.6/include/server/private/semisync.h
file path=usr/mariadb/10.6/include/server/private/semisync_master.h
file path=usr/mariadb/10.6/include/server/private/semisync_master_ack_receiver.h
file path=usr/mariadb/10.6/include/server/private/semisync_slave.h
file path=usr/mariadb/10.6/include/server/private/service_versions.h
file path=usr/mariadb/10.6/include/server/private/session_tracker.h
file path=usr/mariadb/10.6/include/server/private/set_var.h
file path=usr/mariadb/10.6/include/server/private/slave.h
file path=usr/mariadb/10.6/include/server/private/source_revision.h
file path=usr/mariadb/10.6/include/server/private/sp.h
file path=usr/mariadb/10.6/include/server/private/sp_cache.h
file path=usr/mariadb/10.6/include/server/private/span.h
file path=usr/mariadb/10.6/include/server/private/sp_head.h
file path=usr/mariadb/10.6/include/server/private/sp_pcontext.h
file path=usr/mariadb/10.6/include/server/private/sp_rcontext.h
file path=usr/mariadb/10.6/include/server/private/spatial.h
file path=usr/mariadb/10.6/include/server/private/sql_acl.h
file path=usr/mariadb/10.6/include/server/private/sql_admin.h
file path=usr/mariadb/10.6/include/server/private/sql_alloc.h
file path=usr/mariadb/10.6/include/server/private/sql_alter.h
file path=usr/mariadb/10.6/include/server/private/sql_analyse.h
file path=usr/mariadb/10.6/include/server/private/sql_analyze_stmt.h
file path=usr/mariadb/10.6/include/server/private/sql_array.h
file path=usr/mariadb/10.6/include/server/private/sql_audit.h
file path=usr/mariadb/10.6/include/server/private/sql_base.h
file path=usr/mariadb/10.6/include/server/private/sql_basic_types.h
file path=usr/mariadb/10.6/include/server/private/sql_binlog.h
file path=usr/mariadb/10.6/include/server/private/sql_bitmap.h
file path=usr/mariadb/10.6/include/server/private/sql_bootstrap.h
file path=usr/mariadb/10.6/include/server/private/sql_cache.h
file path=usr/mariadb/10.6/include/server/private/sql_callback.h
file path=usr/mariadb/10.6/include/server/private/sql_class.h
file path=usr/mariadb/10.6/include/server/private/sql_cmd.h
file path=usr/mariadb/10.6/include/server/private/sql_connect.h
file path=usr/mariadb/10.6/include/server/private/sql_const.h
file path=usr/mariadb/10.6/include/server/private/sql_crypt.h
file path=usr/mariadb/10.6/include/server/private/sql_cte.h
file path=usr/mariadb/10.6/include/server/private/sql_cursor.h
file path=usr/mariadb/10.6/include/server/private/sql_db.h
file path=usr/mariadb/10.6/include/server/private/sql_delete.h
file path=usr/mariadb/10.6/include/server/private/sql_derived.h
file path=usr/mariadb/10.6/include/server/private/sql_digest.h
file path=usr/mariadb/10.6/include/server/private/sql_digest_stream.h
file path=usr/mariadb/10.6/include/server/private/sql_do.h
file path=usr/mariadb/10.6/include/server/private/sql_error.h
file path=usr/mariadb/10.6/include/server/private/sql_explain.h
file path=usr/mariadb/10.6/include/server/private/sql_expression_cache.h
file path=usr/mariadb/10.6/include/server/private/sql_get_diagnostics.h
file path=usr/mariadb/10.6/include/server/private/sql_handler.h
file path=usr/mariadb/10.6/include/server/private/sql_help.h
file path=usr/mariadb/10.6/include/server/private/sql_hset.h
file path=usr/mariadb/10.6/include/server/private/sql_insert.h
file path=usr/mariadb/10.6/include/server/private/sql_join_cache.h
file path=usr/mariadb/10.6/include/server/private/sql_lex.h
file path=usr/mariadb/10.6/include/server/private/sql_lifo_buffer.h
file path=usr/mariadb/10.6/include/server/private/sql_list.h
file path=usr/mariadb/10.6/include/server/private/sql_load.h
file path=usr/mariadb/10.6/include/server/private/sql_locale.h
file path=usr/mariadb/10.6/include/server/private/sql_manager.h
file path=usr/mariadb/10.6/include/server/private/sql_mode.h
file path=usr/mariadb/10.6/include/server/private/sql_parse.h
file path=usr/mariadb/10.6/include/server/private/sql_partition.h
file path=usr/mariadb/10.6/include/server/private/sql_partition_admin.h
file path=usr/mariadb/10.6/include/server/private/sql_plist.h
file path=usr/mariadb/10.6/include/server/private/sql_plugin.h
file path=usr/mariadb/10.6/include/server/private/sql_plugin_compat.h
file path=usr/mariadb/10.6/include/server/private/sql_prepare.h
file path=usr/mariadb/10.6/include/server/private/sql_priv.h
file path=usr/mariadb/10.6/include/server/private/sql_profile.h
file path=usr/mariadb/10.6/include/server/private/sql_reload.h
file path=usr/mariadb/10.6/include/server/private/sql_rename.h
file path=usr/mariadb/10.6/include/server/private/sql_repl.h
file path=usr/mariadb/10.6/include/server/private/sql_schema.h
file path=usr/mariadb/10.6/include/server/private/sql_select.h
file path=usr/mariadb/10.6/include/server/private/sql_sequence.h
file path=usr/mariadb/10.6/include/server/private/sql_servers.h
file path=usr/mariadb/10.6/include/server/private/sql_show.h
file path=usr/mariadb/10.6/include/server/private/sql_signal.h
file path=usr/mariadb/10.6/include/server/private/sql_sort.h
file path=usr/mariadb/10.6/include/server/private/sql_statistics.h
file path=usr/mariadb/10.6/include/server/private/sql_string.h
file path=usr/mariadb/10.6/include/server/private/sql_table.h
file path=usr/mariadb/10.6/include/server/private/sql_tablespace.h
file path=usr/mariadb/10.6/include/server/private/sql_test.h
file path=usr/mariadb/10.6/include/server/private/sql_time.h
file path=usr/mariadb/10.6/include/server/private/sql_trigger.h
file path=usr/mariadb/10.6/include/server/private/sql_truncate.h
file path=usr/mariadb/10.6/include/server/private/sql_tvc.h
file path=usr/mariadb/10.6/include/server/private/sql_type.h
file path=usr/mariadb/10.6/include/server/private/sql_type_int.h
file path=usr/mariadb/10.6/include/server/private/sql_type_real.h
file path=usr/mariadb/10.6/include/server/private/sql_udf.h
file path=usr/mariadb/10.6/include/server/private/sql_union.h
file path=usr/mariadb/10.6/include/server/private/sql_update.h
file path=usr/mariadb/10.6/include/server/private/sql_view.h
file path=usr/mariadb/10.6/include/server/private/sql_window.h
file path=usr/mariadb/10.6/include/server/private/ssl_compat.h
file path=usr/mariadb/10.6/include/server/private/strfunc.h
file path=usr/mariadb/10.6/include/server/private/structs.h
file path=usr/mariadb/10.6/include/server/private/sys_vars_shared.h
file path=usr/mariadb/10.6/include/server/private/t_ctype.h
file path=usr/mariadb/10.6/include/server/private/table.h
file path=usr/mariadb/10.6/include/server/private/table_cache.h
file path=usr/mariadb/10.6/include/server/private/thr_alarm.h
file path=usr/mariadb/10.6/include/server/private/thr_lock.h
file path=usr/mariadb/10.6/include/server/private/thr_malloc.h
file path=usr/mariadb/10.6/include/server/private/thr_timer.h
file path=usr/mariadb/10.6/include/server/private/threadpool.h
file path=usr/mariadb/10.6/include/server/private/transaction.h
file path=usr/mariadb/10.6/include/server/private/tzfile.h
file path=usr/mariadb/10.6/include/server/private/tztime.h
file path=usr/mariadb/10.6/include/server/private/uniques.h
file path=usr/mariadb/10.6/include/server/private/unireg.h
file path=usr/mariadb/10.6/include/server/private/vers_string.h
file path=usr/mariadb/10.6/include/server/private/violite.h
file path=usr/mariadb/10.6/include/server/private/waiting_threads.h
file path=usr/mariadb/10.6/include/server/private/welcome_copyright_notice.h
file path=usr/mariadb/10.6/include/server/private/win_tzname_data.h
file path=usr/mariadb/10.6/include/server/private/winservice.h
file path=usr/mariadb/10.6/include/server/private/wqueue.h
file path=usr/mariadb/10.6/include/server/private/wsrep.h
file path=usr/mariadb/10.6/include/server/private/wsrep_applier.h
file path=usr/mariadb/10.6/include/server/private/wsrep_binlog.h
file path=usr/mariadb/10.6/include/server/private/wsrep_mysqld.h
file path=usr/mariadb/10.6/include/server/private/wsrep_mysqld_c.h
file path=usr/mariadb/10.6/include/server/private/wsrep_priv.h
file path=usr/mariadb/10.6/include/server/private/wsrep_sst.h
file path=usr/mariadb/10.6/include/server/private/wsrep_thd.h
file path=usr/mariadb/10.6/include/server/private/wsrep_utils.h
file path=usr/mariadb/10.6/include/server/private/wsrep_var.h
file path=usr/mariadb/10.6/include/server/private/wsrep_xid.h
file path=usr/mariadb/10.6/include/server/sql_common.h
file path=usr/mariadb/10.6/include/server/sql_state.h
file path=usr/mariadb/10.6/include/server/sslopt-case.h
file path=usr/mariadb/10.6/include/server/sslopt-longopts.h
file path=usr/mariadb/10.6/include/server/sslopt-vars.h
file path=usr/mariadb/10.6/include/server/typelib.h
link path=usr/mariadb/10.6/lib/$(MACH64)/libmariadb.a target=libmariadbclient.a
link path=usr/mariadb/10.6/lib/$(MACH64)/libmariadb.so target=libmariadb.so.3
file path=usr/mariadb/10.6/lib/$(MACH64)/libmariadb.so.3
file path=usr/mariadb/10.6/lib/$(MACH64)/libmariadbclient.a
file path=usr/mariadb/10.6/lib/$(MACH64)/libmariadbd.a
link path=usr/mariadb/10.6/lib/$(MACH64)/libmariadbd.so target=libmariadbd.so.19
file path=usr/mariadb/10.6/lib/$(MACH64)/libmariadbd.so.19
link path=usr/mariadb/10.6/lib/$(MACH64)/libmysqlclient.a \
    target=libmariadbclient.a
link path=usr/mariadb/10.6/lib/$(MACH64)/libmysqlclient.so \
    target=libmariadb.so.3
link path=usr/mariadb/10.6/lib/$(MACH64)/libmysqlclient_r.a \
    target=libmariadbclient.a
link path=usr/mariadb/10.6/lib/$(MACH64)/libmysqlclient_r.so \
    target=libmariadb.so.3
link path=usr/mariadb/10.6/lib/$(MACH64)/libmysqld.a target=libmariadbd.a
link path=usr/mariadb/10.6/lib/$(MACH64)/libmysqld.so target=libmariadbd.so.19
file path=usr/mariadb/10.6/lib/$(MACH64)/libmysqlservices.a
file path=usr/mariadb/10.6/lib/$(MACH64)/pkgconfig/mariadb.pc
file path=usr/mariadb/10.6/share/aclocal/mysql.m4
file path=usr/mariadb/10.6/include/server/mysql/service_json.h
file path=usr/mariadb/10.6/include/server/private/pfs_metadata_provider.h
file path=usr/mariadb/10.6/include/server/private/wsrep_types.h
file path=usr/mariadb/10.6/include/server/private/opt_trace.h
file path=usr/mariadb/10.6/include/server/mysql/service_thd_mdl.h
file path=usr/mariadb/10.6/include/server/private/wsrep_server_service.h
file path=usr/mariadb/10.6/include/server/private/ddl_log.h
file path=usr/mariadb/10.6/include/server/private/my_atomic_wrapper.h
file path=usr/mariadb/10.6/include/server/private/json_table.h
file path=usr/mariadb/10.6/include/server/private/aria_backup.h
file path=usr/mariadb/10.6/include/server/private/wsrep_mutex.h
file path=usr/mariadb/10.6/include/server/mysql/psi/mysql_transaction.h
file path=usr/mariadb/10.6/include/server/private/pfs_stage_provider.h
file path=usr/mariadb/10.6/include/server/private/pfs_idle_provider.h
file path=usr/mariadb/10.6/include/server/private/privilege.h
file path=usr/mariadb/10.6/include/server/private/grant.h
file path=usr/mariadb/10.6/include/server/private/backup.h
file path=usr/mariadb/10.6/include/server/private/my_counter.h
file path=usr/mariadb/10.6/include/server/private/thread_cache.h
file path=usr/mariadb/10.6/include/server/mysql/psi/mysql_sp.h
file path=usr/mariadb/10.6/include/server/private/wsrep_schema.h
file path=usr/mariadb/10.6/include/server/private/wsrep_condition_variable.h
file path=usr/mariadb/10.6/include/server/private/pfs_thread_provider.h
file path=usr/mariadb/10.6/include/server/private/pfs_memory_provider.h
file path=usr/mariadb/10.6/include/server/mysql/plugin_function.h
file path=usr/mariadb/10.6/include/server/private/pfs_table_provider.h
file path=usr/mariadb/10.6/include/server/private/create_tmp_table.h
file path=usr/mariadb/10.6/include/server/private/pfs_file_provider.h
file path=usr/mariadb/10.6/include/server/private/derived_handler.h
file path=usr/mariadb/10.6/include/server/private/wsrep_server_state.h
file path=usr/mariadb/10.6/include/server/private/assume_aligned.h
file path=usr/mariadb/10.6/include/server/private/scope.h
file path=usr/mariadb/10.6/include/server/private/opt_trace_context.h
file path=usr/mariadb/10.6/include/server/private/pfs_socket_provider.h
file path=usr/mariadb/10.6/include/server/mysql/psi/mysql_ps.h
file path=usr/mariadb/10.6/include/server/private/wsrep_client_service.h
file path=usr/mariadb/10.6/include/server/private/sql_type_string.h
file path=usr/mariadb/10.6/include/server/private/sql_type_geom.h
file path=usr/mariadb/10.6/include/server/private/debug.h
file path=usr/mariadb/10.6/include/server/mysql/plugin_data_type.h
file path=usr/mariadb/10.6/include/server/private/wsrep_client_state.h
file path=usr/mariadb/10.6/include/server/private/sql_i_s.h
file path=usr/mariadb/10.6/include/server/private/pfs_statement_provider.h
file path=usr/mariadb/10.6/include/server/private/xa.h
file path=usr/mariadb/10.6/include/server/mysql/psi/mysql_mdl.h
file path=usr/mariadb/10.6/include/server/private/threadpool_generic.h
file path=usr/mariadb/10.6/include/server/private/sql_limit.h
file path=usr/mariadb/10.6/include/server/private/wsrep_storage_service.h
file path=usr/mariadb/10.6/include/server/private/pfs_transaction_provider.h
file path=usr/mariadb/10.6/include/server/private/sql_type_json.h
file path=usr/mariadb/10.6/include/server/private/wsrep_trans_observer.h
file path=usr/mariadb/10.6/include/server/private/threadpool_winsockets.h
file path=usr/mariadb/10.6/include/server/private/wsrep_high_priority_service.h
file path=usr/mariadb/10.6/include/server/private/my_stack_alloc.h
file path=usr/mariadb/10.6/include/server/private/rowid_filter.h
file path=usr/mariadb/10.6/include/server/private/aligned.h
file path=usr/mariadb/10.6/include/server/mysql/psi/mysql_memory.h
file path=usr/mariadb/10.6/include/server/private/select_handler.h
file path=usr/mariadb/10.6/include/server/private/handle_connections_win.h
file path=usr/mariadb/10.6/man/man3/mariadb_cancel.3
file path=usr/mariadb/10.6/man/man3/mariadb_connection.3
file path=usr/mariadb/10.6/man/man3/mariadb_dyncol_check.3
file path=usr/mariadb/10.6/man/man3/mariadb_dyncol_column_cmp_named.3
file path=usr/mariadb/10.6/man/man3/mariadb_dyncol_column_count.3
file path=usr/mariadb/10.6/man/man3/mariadb_dyncol_create_many_named.3
file path=usr/mariadb/10.6/man/man3/mariadb_dyncol_create_many_num.3
file path=usr/mariadb/10.6/man/man3/mariadb_dyncol_exists_named.3
file path=usr/mariadb/10.6/man/man3/mariadb_dyncol_exists_num.3
file path=usr/mariadb/10.6/man/man3/mariadb_dyncol_free.3
file path=usr/mariadb/10.6/man/man3/mariadb_dyncol_list_named.3
file path=usr/mariadb/10.6/man/man3/mariadb_dyncol_list_num.3
file path=usr/mariadb/10.6/man/man3/mariadb_dyncol_unpack.3
file path=usr/mariadb/10.6/man/man3/mariadb_dyncol_update_many_named.3
file path=usr/mariadb/10.6/man/man3/mariadb_dyncol_update_many_num.3
file path=usr/mariadb/10.6/man/man3/mariadb_get_infov.3
file path=usr/mariadb/10.6/man/man3/mariadb_reconnect.3
file path=usr/mariadb/10.6/man/man3/mariadb_rpl_close.3
file path=usr/mariadb/10.6/man/man3/mariadb_rpl_fetch.3
file path=usr/mariadb/10.6/man/man3/mariadb_rpl_get_optionsv.3
file path=usr/mariadb/10.6/man/man3/mariadb_rpl_open.3
file path=usr/mariadb/10.6/man/man3/mariadb_rpl_optionsv.3
file path=usr/mariadb/10.6/man/man3/mariadb_stmt_execute_direct.3
file path=usr/mariadb/10.6/man/man3/mariadb_stmt_fetch_fields.3
file path=usr/mariadb/10.6/man/man3/mysql_affected_rows.3
file path=usr/mariadb/10.6/man/man3/mysql_autocommit.3
file path=usr/mariadb/10.6/man/man3/mysql_change_user.3
file path=usr/mariadb/10.6/man/man3/mysql_close.3
file path=usr/mariadb/10.6/man/man3/mysql_commit.3
file path=usr/mariadb/10.6/man/man3/mysql_data_seek.3
file path=usr/mariadb/10.6/man/man3/mysql_errno.3
file path=usr/mariadb/10.6/man/man3/mysql_error.3
file path=usr/mariadb/10.6/man/man3/mysql_fetch_field.3
file path=usr/mariadb/10.6/man/man3/mysql_fetch_field_direct.3
file path=usr/mariadb/10.6/man/man3/mysql_fetch_fields.3
file path=usr/mariadb/10.6/man/man3/mysql_fetch_lengths.3
file path=usr/mariadb/10.6/man/man3/mysql_fetch_row.3
file path=usr/mariadb/10.6/man/man3/mysql_field_count.3
file path=usr/mariadb/10.6/man/man3/mysql_field_seek.3
file path=usr/mariadb/10.6/man/man3/mysql_field_tell.3
file path=usr/mariadb/10.6/man/man3/mysql_free_result.3
file path=usr/mariadb/10.6/man/man3/mysql_get_character_set_info.3
file path=usr/mariadb/10.6/man/man3/mysql_get_client_info.3
file path=usr/mariadb/10.6/man/man3/mysql_get_client_version.3
file path=usr/mariadb/10.6/man/man3/mysql_get_host_info.3
file path=usr/mariadb/10.6/man/man3/mysql_get_proto_info.3
file path=usr/mariadb/10.6/man/man3/mysql_get_server_info.3
file path=usr/mariadb/10.6/man/man3/mysql_get_server_version.3
file path=usr/mariadb/10.6/man/man3/mysql_get_socket.3
file path=usr/mariadb/10.6/man/man3/mysql_get_ssl_cipher.3
file path=usr/mariadb/10.6/man/man3/mysql_hex_string.3
file path=usr/mariadb/10.6/man/man3/mysql_info.3
file path=usr/mariadb/10.6/man/man3/mysql_init.3
file path=usr/mariadb/10.6/man/man3/mysql_kill.3
file path=usr/mariadb/10.6/man/man3/mysql_more_results.3
file path=usr/mariadb/10.6/man/man3/mysql_next_result.3
file path=usr/mariadb/10.6/man/man3/mysql_num_fields.3
file path=usr/mariadb/10.6/man/man3/mysql_num_rows.3
file path=usr/mariadb/10.6/man/man3/mysql_options.3
file path=usr/mariadb/10.6/man/man3/mysql_options4.3
file path=usr/mariadb/10.6/man/man3/mysql_optionsv.3
file path=usr/mariadb/10.6/man/man3/mysql_ping.3
file path=usr/mariadb/10.6/man/man3/mysql_query.3
file path=usr/mariadb/10.6/man/man3/mysql_read_query_result.3
file path=usr/mariadb/10.6/man/man3/mysql_real_connect.3
file path=usr/mariadb/10.6/man/man3/mysql_real_escape_string.3
file path=usr/mariadb/10.6/man/man3/mysql_real_query.3
file path=usr/mariadb/10.6/man/man3/mysql_refresh.3
file path=usr/mariadb/10.6/man/man3/mysql_reset_connection.3
file path=usr/mariadb/10.6/man/man3/mysql_rollback.3
file path=usr/mariadb/10.6/man/man3/mysql_row_seek.3
file path=usr/mariadb/10.6/man/man3/mysql_row_tell.3
file path=usr/mariadb/10.6/man/man3/mysql_select_db.3
file path=usr/mariadb/10.6/man/man3/mysql_send_query.3
file path=usr/mariadb/10.6/man/man3/mysql_server_end.3
file path=usr/mariadb/10.6/man/man3/mysql_server_init.3
file path=usr/mariadb/10.6/man/man3/mysql_session_track_get_first.3
file path=usr/mariadb/10.6/man/man3/mysql_session_track_get_next.3
file path=usr/mariadb/10.6/man/man3/mysql_set_character_set.3
file path=usr/mariadb/10.6/man/man3/mysql_set_server_option.3
file path=usr/mariadb/10.6/man/man3/mysql_shutdown.3
file path=usr/mariadb/10.6/man/man3/mysql_sqlstate.3
file path=usr/mariadb/10.6/man/man3/mysql_ssl_set.3
file path=usr/mariadb/10.6/man/man3/mysql_stat.3
file path=usr/mariadb/10.6/man/man3/mysql_stmt_affected_rows.3
file path=usr/mariadb/10.6/man/man3/mysql_stmt_attr_get.3
file path=usr/mariadb/10.6/man/man3/mysql_stmt_attr_set.3
file path=usr/mariadb/10.6/man/man3/mysql_stmt_bind_param.3
file path=usr/mariadb/10.6/man/man3/mysql_stmt_bind_result.3
file path=usr/mariadb/10.6/man/man3/mysql_stmt_close.3
file path=usr/mariadb/10.6/man/man3/mysql_stmt_data_seek.3
file path=usr/mariadb/10.6/man/man3/mysql_stmt_errno.3
file path=usr/mariadb/10.6/man/man3/mysql_stmt_error.3
file path=usr/mariadb/10.6/man/man3/mysql_stmt_execute.3
file path=usr/mariadb/10.6/man/man3/mysql_stmt_fetch.3
file path=usr/mariadb/10.6/man/man3/mysql_stmt_fetch_column.3
file path=usr/mariadb/10.6/man/man3/mysql_stmt_field_count.3
file path=usr/mariadb/10.6/man/man3/mysql_stmt_free_result.3
file path=usr/mariadb/10.6/man/man3/mysql_stmt_init.3
file path=usr/mariadb/10.6/man/man3/mysql_stmt_insert_id.3
file path=usr/mariadb/10.6/man/man3/mysql_stmt_more_results.3
file path=usr/mariadb/10.6/man/man3/mysql_stmt_next_result.3
file path=usr/mariadb/10.6/man/man3/mysql_stmt_num_rows.3
file path=usr/mariadb/10.6/man/man3/mysql_stmt_param_count.3
file path=usr/mariadb/10.6/man/man3/mysql_stmt_param_metadata.3
file path=usr/mariadb/10.6/man/man3/mysql_stmt_prepare.3
file path=usr/mariadb/10.6/man/man3/mysql_stmt_reset.3
file path=usr/mariadb/10.6/man/man3/mysql_stmt_result_metadata.3
file path=usr/mariadb/10.6/man/man3/mysql_stmt_row_seek.3
file path=usr/mariadb/10.6/man/man3/mysql_stmt_row_tell.3
file path=usr/mariadb/10.6/man/man3/mysql_stmt_send_long_data.3
file path=usr/mariadb/10.6/man/man3/mysql_stmt_sqlstate.3
file path=usr/mariadb/10.6/man/man3/mysql_stmt_store_result.3
file path=usr/mariadb/10.6/man/man3/mysql_stmt_warning_count.3
file path=usr/mariadb/10.6/man/man3/mysql_store_result.3
file path=usr/mariadb/10.6/man/man3/mysql_thread_end.3
file path=usr/mariadb/10.6/man/man3/mysql_thread_id.3
file path=usr/mariadb/10.6/man/man3/mysql_thread_init.3
file path=usr/mariadb/10.6/man/man3/mysql_use_result.3
file path=usr/mariadb/10.6/man/man3/mysql_warning_count.3
components/database/mariadb-106/mariadb-106test.p5m
New file
Diff too large
components/database/mariadb-106/patches/02-strerror.patch
New file
@@ -0,0 +1,11 @@
--- mariadb-10.1.17/storage/connect/tabvct.cpp.1    2016-08-29 11:38:55.000000000 -0300
+++ mariadb-10.1.17/storage/connect/tabvct.cpp        2016-10-11 23:20:16.285444020 -0300
@@ -73,7 +73,7 @@
 #if defined(UNIX)
 //add dummy strerror   (NGC)
-char *strerror(int num);
+//char *strerror(int num);
 #endif   // UNIX
 /***********************************************************************/
components/database/mariadb-106/patches/04-dtrace.patch
New file
@@ -0,0 +1,71 @@
--- oi-userland/components/database/mariadb-101/mariadb-10.1.17/mysys_ssl/CMakeLists.txt    2016-08-29 11:38:54.000000000 -0300
+++ mariadb-10.1.17/mysys_ssl/CMakeLists.txt    2016-11-04 15:04:03.183619774 -0200
@@ -42,4 +42,4 @@
 ADD_CONVENIENCE_LIBRARY(mysys_ssl ${MYSYS_SSL_SOURCES})
 TARGET_LINK_LIBRARIES(mysys_ssl dbug strings ${SSL_LIBRARIES})
-DTRACE_INSTRUMENT(mysys_ssl)
+#DTRACE_INSTRUMENT(mysys_ssl)
--- mariadb-10.1.30/cmake/plugin.cmake.~1~    2017-12-21 18:48:45.000000000 +0000
+++ mariadb-10.1.30/cmake/plugin.cmake    2018-01-23 13:35:05.269844793 +0000
@@ -137,7 +137,7 @@
     ENDIF()
     ADD_LIBRARY(${target} STATIC ${SOURCES})
-    DTRACE_INSTRUMENT(${target})
+    #DTRACE_INSTRUMENT(${target})
     ADD_DEPENDENCIES(${target} GenError ${ARG_DEPENDS})
     RESTRICT_SYMBOL_EXPORTS(${target})
     IF(WITH_EMBEDDED_SERVER)
@@ -146,7 +146,7 @@
         # Recompile some plugins for embedded
         ADD_CONVENIENCE_LIBRARY(${target}_embedded ${SOURCES})
         RESTRICT_SYMBOL_EXPORTS(${target}_embedded)
-        DTRACE_INSTRUMENT(${target}_embedded)
+        #DTRACE_INSTRUMENT(${target}_embedded)
         IF(ARG_RECOMPILE_FOR_EMBEDDED)
           SET_TARGET_PROPERTIES(${target}_embedded
             PROPERTIES COMPILE_DEFINITIONS "EMBEDDED_LIBRARY")
@@ -184,7 +184,7 @@
     ADD_VERSION_INFO(${target} MODULE SOURCES)
     ADD_LIBRARY(${target} MODULE ${SOURCES})
-    DTRACE_INSTRUMENT(${target})
+    #DTRACE_INSTRUMENT(${target})
     SET_TARGET_PROPERTIES (${target} PROPERTIES PREFIX "")
     IF (NOT ARG_CLIENT)
--- oi-userland/components/database/mariadb-101/mariadb-10.1.17/storage/csv/CMakeLists.txt    2016-08-29 11:38:55.000000000 -0300
+++ mariadb-10.1.17/storage/csv/CMakeLists.txt    2016-11-04 15:51:09.026589255 -0200
@@ -15,3 +15,10 @@
 SET(CSV_SOURCES  ha_tina.cc ha_tina.h transparent_file.cc transparent_file.h)
 MYSQL_ADD_PLUGIN(csv ${CSV_SOURCES} STORAGE_ENGINE MANDATORY)
+DTRACE_INSTRUMENT(csv)
+IF(WITH_EMBEDDED_SERVER)
+  IF(ARG_RECOMPILE_FOR_EMBEDDED OR NOT _SKIP_PIC)
+    DTRACE_INSTRUMENT(csv_embedded)
+  ENDIF()
+ENDIF()
+
--- mariadb-10.1.24/extra/mariabackup/CMakeLists.txt.1    2017-06-21 15:05:51.248116068 +0000
+++ mariadb-10.1.24/extra/mariabackup/CMakeLists.txt    2017-06-21 15:06:54.846523267 +0000
@@ -80,6 +80,8 @@
   COMPONENT backup
   )
+DTRACE_INSTRUMENT(mariadb-backup)
+
 # Export all symbols on Unix, for better crash callstacks
 SET_TARGET_PROPERTIES(mariabackup PROPERTIES ENABLE_EXPORTS TRUE)
--- mariadb-10.3.24/mysys/mf_keycache.c.1    2020-08-22 00:20:09.753480178 +0000
+++ mariadb-10.3.24/mysys/mf_keycache.c    2020-08-22 00:20:19.551724560 +0000
@@ -3279,7 +3279,6 @@
     when a thread has got an exclusive lock for the key file.
 */
-static
 int simple_key_cache_write(SIMPLE_KEY_CACHE_CB *keycache,
                            File file, void *file_extra __attribute__((unused)),
                            my_off_t filepos, int level,
components/database/mariadb-106/patches/08-dtrace-invalid-conversion.patch
New file
@@ -0,0 +1,203 @@
--- mariadb-10.3.8/sql/sql_class.h    2018-07-02 09:34:11.000000000 +0000
+++ mariadb-10.3.8/sql/sql_class.h.new    2018-08-07 06:58:32.140512292 +0000
@@ -6391,7 +6391,7 @@ inline int handler::ha_read_first_row(uc
 inline int handler::ha_write_tmp_row(uchar *buf)
 {
   int error;
-  MYSQL_INSERT_ROW_START(table_share->db.str, table_share->table_name.str);
+  MYSQL_INSERT_ROW_START((char*)table_share->db.str, (char*)table_share->table_name.str);
   increment_statistics(&SSV::ha_tmp_write_count);
   TABLE_IO_WAIT(tracker, m_psi, PSI_TABLE_WRITE_ROW, MAX_KEY, 0,
                 { error= write_row(buf); })
@@ -6402,7 +6402,7 @@ inline int handler::ha_write_tmp_row(uch
 inline int handler::ha_delete_tmp_row(uchar *buf)
 {
   int error;
-  MYSQL_DELETE_ROW_START(table_share->db.str, table_share->table_name.str);
+  MYSQL_DELETE_ROW_START((char*)table_share->db.str, (char*)table_share->table_name.str);
   increment_statistics(&SSV::ha_tmp_delete_count);
   TABLE_IO_WAIT(tracker, m_psi, PSI_TABLE_DELETE_ROW, MAX_KEY, 0,
                 { error= delete_row(buf); })
@@ -6413,7 +6413,7 @@ inline int handler::ha_delete_tmp_row(uc
 inline int handler::ha_update_tmp_row(const uchar *old_data, uchar *new_data)
 {
   int error;
-  MYSQL_UPDATE_ROW_START(table_share->db.str, table_share->table_name.str);
+  MYSQL_UPDATE_ROW_START((char*)table_share->db.str, (char*)table_share->table_name.str);
   increment_statistics(&SSV::ha_tmp_update_count);
   TABLE_IO_WAIT(tracker, m_psi, PSI_TABLE_UPDATE_ROW, active_index, 0,
                 { error= update_row(old_data, new_data);})
--- mariadb-10.3.8/sql/filesort.cc    2018-07-02 09:34:11.000000000 +0000
+++ mariadb-10.3.8/sql/filesort.cc.new    2018-08-07 07:30:45.020793273 +0000
@@ -165,7 +165,7 @@ SORT_INFO *filesort(THD *thd, TABLE *tab
   SORT_INFO *sort;
   TABLE_LIST *tab= table->pos_in_table_list;
   Item_subselect *subselect= tab ? tab->containing_subselect() : 0;
-  MYSQL_FILESORT_START(table->s->db.str, table->s->table_name.str);
+  MYSQL_FILESORT_START((char*)table->s->db.str, (char*)table->s->table_name.str);
   DEBUG_SYNC(thd, "filesort_start");
   if (!(sort= new SORT_INFO))
--- mariadb-10.3.8/storage/csv/ha_tina.cc    2018-07-02 09:34:11.000000000 +0000
+++ mariadb-10.3.8/storage/csv/ha_tina.cc.new    2018-08-07 18:47:07.864867214 +0000
@@ -1226,7 +1226,7 @@ int ha_tina::rnd_next(uchar *buf)
 {
   int rc;
   DBUG_ENTER("ha_tina::rnd_next");
-  MYSQL_READ_ROW_START(table_share->db.str, table_share->table_name.str,
+  MYSQL_READ_ROW_START((char*)table_share->db.str, (char*)table_share->table_name.str,
                        TRUE);
   if (share->crashed)
@@ -1281,7 +1281,7 @@ int ha_tina::rnd_pos(uchar * buf, uchar
 {
   int rc;
   DBUG_ENTER("ha_tina::rnd_pos");
-  MYSQL_READ_ROW_START(table_share->db.str, table_share->table_name.str,
+  MYSQL_READ_ROW_START((char*)table_share->db.str, (char*)table_share->table_name.str,
                        FALSE);
   current_position= my_get_ptr(pos,ref_length);
   rc= find_current_row(buf);
--- mariadb-10.3.8/sql/handler.cc    2018-07-02 09:34:11.000000000 +0000
+++ mariadb-10.3.8/sql/handler.cc.new    2018-08-07 19:04:42.437141903 +0000
@@ -6099,18 +6099,18 @@ int handler::ha_external_lock(THD *thd,
   {
     if (lock_type == F_RDLCK)
     {
-      MYSQL_HANDLER_RDLOCK_START(table_share->db.str,
-                                 table_share->table_name.str);
+      MYSQL_HANDLER_RDLOCK_START((char*)table_share->db.str,
+                                 (char*)table_share->table_name.str);
     }
     else if (lock_type == F_WRLCK)
     {
-      MYSQL_HANDLER_WRLOCK_START(table_share->db.str,
-                                 table_share->table_name.str);
+      MYSQL_HANDLER_WRLOCK_START((char*)table_share->db.str,
+                                 (char*)table_share->table_name.str);
     }
     else if (lock_type == F_UNLCK)
     {
-      MYSQL_HANDLER_UNLOCK_START(table_share->db.str,
-                                 table_share->table_name.str);
+      MYSQL_HANDLER_UNLOCK_START((char*)table_share->db.str,
+                                 (char*)table_share->table_name.str);
     }
   }
@@ -6189,7 +6189,7 @@ int handler::ha_write_row(uchar *buf)
   DBUG_ENTER("handler::ha_write_row");
   DEBUG_SYNC_C("ha_write_row_start");
-  MYSQL_INSERT_ROW_START(table_share->db.str, table_share->table_name.str);
+  MYSQL_INSERT_ROW_START((char*)table_share->db.str, (char*)table_share->table_name.str);
   mark_trx_read_write();
   increment_statistics(&SSV::ha_write_count);
@@ -6221,7 +6221,7 @@ int handler::ha_update_row(const uchar *
   DBUG_ASSERT(new_data == table->record[0]);
   DBUG_ASSERT(old_data == table->record[1]);
-  MYSQL_UPDATE_ROW_START(table_share->db.str, table_share->table_name.str);
+  MYSQL_UPDATE_ROW_START((char*)table_share->db.str, (char*)table_share->table_name.str);
   mark_trx_read_write();
   increment_statistics(&SSV::ha_update_count);
@@ -6277,7 +6277,7 @@ int handler::ha_delete_row(const uchar *
   DBUG_ASSERT(buf == table->record[0] ||
               buf == table->record[1]);
-  MYSQL_DELETE_ROW_START(table_share->db.str, table_share->table_name.str);
+  MYSQL_DELETE_ROW_START((char*)table_share->db.str, (char*)table_share->table_name.str);
   mark_trx_read_write();
   increment_statistics(&SSV::ha_delete_count);
@@ -6311,6 +6311,7 @@ int handler::ha_direct_update_rows(ha_ro
 {
   int error;
+
-  MYSQL_UPDATE_ROW_START(table_share->db.str, table_share->table_name.str);
+  MYSQL_UPDATE_ROW_START((char*)table_share->db.str, (char*)table_share->table_name.str);
   mark_trx_read_write();
   error = direct_update_rows(update_rows);
@@ -6338,7 +6338,7 @@ int handler::ha_direct_delete_rows(ha_ro
   /* Ensure we are not using binlog row */
   DBUG_ASSERT(!table->in_use->is_current_stmt_binlog_format_row());
-  MYSQL_DELETE_ROW_START(table_share->db.str, table_share->table_name.str);
+  MYSQL_DELETE_ROW_START((char*)table_share->db.str, (char*)table_share->table_name.str);
   mark_trx_read_write();
   error = direct_delete_rows(delete_rows);
--- mariadb-10.3.8/sql/sp_head.cc    2018-07-02 09:34:11.000000000 +0000
+++ mariadb-10.3.8/sql/sp_head.cc.new    2018-08-07 19:27:05.342039650 +0000
@@ -3585,7 +3585,7 @@ sp_instr_stmt::exec_core(THD *thd, uint
 {
   MYSQL_QUERY_EXEC_START(thd->query(),
                          thd->thread_id,
-                         thd->get_db(),
+                         (char*)thd->get_db(),
                          &thd->security_ctx->priv_user[0],
                          (char *)thd->security_ctx->host_or_ip,
                          3);
--- mariadb-10.3.8/sql/sql_cursor.cc    2018-07-02 09:34:11.000000000 +0000
+++ mariadb-10.3.8/sql/sql_cursor.cc.new    2018-08-07 19:31:10.441044534 +0000
@@ -132,7 +132,7 @@ int mysql_open_cursor(THD *thd, select_r
   MYSQL_QUERY_EXEC_START(thd->query(),
                          thd->thread_id,
-                         thd->get_db(),
+                         (char*)thd->get_db(),
                          &thd->security_ctx->priv_user[0],
                          (char *) thd->security_ctx->host_or_ip,
                          2);
--- mariadb-10.3.8/sql/sql_parse.cc    2018-07-02 09:34:11.000000000 +0000
+++ mariadb-10.3.8/sql/sql_parse.cc.new    2018-08-07 19:38:07.511539303 +0000
@@ -1823,7 +1823,7 @@ bool dispatch_command(enum enum_server_c
     if (unlikely(alloc_query(thd, packet, packet_length)))
       break;                    // fatal error is set
     MYSQL_QUERY_START(thd->query(), thd->thread_id,
-                      thd->get_db(),
+                      (char*)thd->get_db(),
                       &thd->security_ctx->priv_user[0],
                       (char *) thd->security_ctx->host_or_ip);
     char *packet_end= thd->query() + thd->query_length();
@@ -1901,7 +1901,7 @@ bool dispatch_command(enum enum_server_c
       /* DTRACE begin */
       MYSQL_QUERY_START(beginning_of_next_stmt, thd->thread_id,
-                        thd->get_db(),
+                        (char*)thd->get_db(),
                         &thd->security_ctx->priv_user[0],
                         (char *) thd->security_ctx->host_or_ip);
@@ -7815,7 +7815,7 @@
   /* DTRACE begin */
   MYSQL_QUERY_START(rawbuf, thd->thread_id,
-                    thd->get_db(),
+                    (char *) thd->get_db(),
                     &thd->security_ctx->priv_user[0],
                     (char *) thd->security_ctx->host_or_ip);
@@ -8065,7 +8065,7 @@ void mysql_parse(THD *thd, char *rawbuf,
           lex->set_trg_event_type_for_tables();
           MYSQL_QUERY_EXEC_START(thd->query(),
                                  thd->thread_id,
-                                 thd->get_db(),
+                                 (char*)thd->get_db(),
                                  &thd->security_ctx->priv_user[0],
                                  (char *) thd->security_ctx->host_or_ip,
                                  0);
--- a/sql/sql_prepare.cc    Wed May 18 08:34:16 2022
+++ b/sql/sql_prepare.cc    Fri Jul 29 16:04:08 2022
@@ -5199,7 +5199,7 @@
     if (query_cache_send_result_to_client(thd, thd->query(),
                                           thd->query_length()) <= 0)
     {
-      MYSQL_QUERY_EXEC_START(thd->query(), thd->thread_id, thd->get_db(),
+      MYSQL_QUERY_EXEC_START(thd->query(), thd->thread_id, (char *)thd->get_db(),
                              &thd->security_ctx->priv_user[0],
                              (char *) thd->security_ctx->host_or_ip, 1);
       error= mysql_execute_command(thd, true);
components/database/mariadb-106/patches/11-typecast_my_atomic.patch
New file
@@ -0,0 +1,16 @@
--- a/include/my_atomic.h    Tue May 17 23:27:38 2022
+++ b/include/my_atomic.h    Wed Jul 27 23:52:42 2022
@@ -140,11 +140,11 @@
 #define MY_MEMORY_ORDER_ACQ_REL
 #define MY_MEMORY_ORDER_SEQ_CST
-#define my_atomic_store32_explicit(P, D, O) my_atomic_store32((P), (D))
+#define my_atomic_store32_explicit(P, D, O) my_atomic_store32((volatile int32*)(P), (D))
 #define my_atomic_store64_explicit(P, D, O) my_atomic_store64((P), (D))
 #define my_atomic_storeptr_explicit(P, D, O) my_atomic_storeptr((P), (D))
-#define my_atomic_load32_explicit(P, O) my_atomic_load32((P))
+#define my_atomic_load32_explicit(P, O) my_atomic_load32((volatile int32*)(P))
 #define my_atomic_load64_explicit(P, O) my_atomic_load64((P))
 #define my_atomic_loadptr_explicit(P, O) my_atomic_loadptr((P))
components/database/mariadb-106/patches/12-cmake_dtrace_link.patch
New file
@@ -0,0 +1,10 @@
--- a/cmake/dtrace.cmake    Tue May 17 23:27:37 2022
+++ b/cmake/dtrace.cmake    Wed Jul 27 23:57:16 2022
@@ -199,6 +199,6 @@
   )
   ADD_CUSTOM_TARGET(${target}_dtrace_all  DEPENDS ${obj})
   ADD_DEPENDENCIES(${target} ${target}_dtrace_all)
-  TARGET_LINK_LIBRARIES(${target} ${obj})
+  TARGET_LINK_LIBRARIES(${target} PRIVATE ${obj})
 ENDIF()
 ENDMACRO()
components/database/mariadb-106/patches/15_fix-aligned-alloc.patch
New file
@@ -0,0 +1,10 @@
--- a/include/aligned.h    Wed Aug 10 11:31:48 2022
+++ b/include/aligned.h    Wed Aug 17 19:30:33 2022
@@ -15,6 +15,7 @@
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1335  USA */
 #ifdef HAVE_ALIGNED_ALLOC
+#include <stdlib.h>
 #elif defined __linux__
 # include <malloc.h>
 #endif
components/database/mariadb-106/patches/16_c++-standard.patch
New file
@@ -0,0 +1,11 @@
--- a/CMakeLists.txt    Wed Aug 10 11:31:47 2022
+++ b/CMakeLists.txt    Wed Aug 17 20:43:18 2022
@@ -85,7 +85,7 @@
   ENDIF()
 ELSE()
   SET(CMAKE_C_STANDARD 99)
-  SET(CMAKE_CXX_STANDARD 11)
+  SET(CMAKE_CXX_STANDARD 17)
 ENDIF()
 SET(CPACK_PACKAGE_NAME "MariaDB")
components/database/mariadb-106/patches/17_ifreq-hwaddr.patch
New file
@@ -0,0 +1,11 @@
--- a/mysys/my_gethwaddr.c    Wed Aug 10 11:31:53 2022
+++ b/mysys/my_gethwaddr.c    Wed Aug 17 21:06:36 2022
@@ -113,6 +113,8 @@
 #if !defined(_AIX) || !defined(__linux__)
 #if defined(__linux___)
 #define HWADDR_DATA ifr[i].ifr_hwaddr.sa_data
+#elif defined(__sun)
+#define HWADDR_DATA ifr[i].ifr_enaddr
 #else
 #define HWADDR_DATA ifr[i].ifr_hwaddr
 #endif
components/database/mariadb-106/patches/18_remove-concurrency-variable.patch
New file
@@ -0,0 +1,32 @@
diff -u a/sql/mysqld.cc b/sql/mysqld.cc
--- a/sql/mysqld.cc    Wed Aug 17 23:01:56 2022
+++ b/sql/mysqld.cc    Wed Aug 17 23:45:44 2022
@@ -5660,7 +5657,6 @@
     SYSVAR_AUTOSIZE(my_thread_stack_size, new_thread_stack_size);
   }
-  (void) thr_setconcurrency(concurrency);    // 10 by default
   select_thread=pthread_self();
   select_thread_in_use=1;
diff -u a/sql/mysqld.h b/sql/mysqld.h
--- a/sql/mysqld.h    Wed Aug 10 11:31:54 2022
+++ b/sql/mysqld.h    Wed Aug 17 23:45:10 2022
@@ -258,7 +258,6 @@
 extern ulong executed_events;
 extern char language[FN_REFLEN];
 extern "C" MYSQL_PLUGIN_IMPORT ulong server_id;
-extern ulong concurrency;
 extern time_t server_start_time, flush_status_time;
 extern char *opt_mysql_tmpdir, mysql_charsets_dir[];
 extern size_t mysql_unpacked_real_data_home_len;
--- a/libmysqld/lib_sql.cc    2022-08-10 11:31:48.000000000 +0000
+++ b/libmysqld/lib_sql.cc    2022-08-18 20:38:30.006538457 +0000
@@ -622,7 +622,6 @@
     udf_init();
 #endif
-  (void) thr_setconcurrency(concurrency);    // 10 by default
   if (flush_time && flush_time != ~(ulong) 0L)
     start_handle_manager();
components/database/mariadb-106/patches/19_fix-pam-include-order.patch
New file
@@ -0,0 +1,12 @@
--- a/plugin/auth_pam/testing/pam_mariadb_mtr.c    2022-08-10 11:31:53.000000000 +0000
+++ b/plugin/auth_pam/testing/pam_mariadb_mtr.c    2022-08-18 19:03:35.987384217 +0000
@@ -10,8 +10,8 @@
 #include <stdlib.h>
 #include <string.h>
-#include <security/pam_modules.h>
 #include <security/pam_appl.h>
+#include <security/pam_modules.h>
 #define N 3
components/database/mariadb-106/patches/20_my-cnf-d.patch
New file
@@ -0,0 +1,12 @@
--- a/support-files/rpm/my.cnf    2022-08-10 11:31:57.000000000 +0000
+++ b/support-files/rpm/my.cnf    2022-08-20 03:06:57.669567252 +0000
@@ -4,8 +4,7 @@
 #
 [client-server]
 #
 # include *.cnf from the config directory
 #
-!includedir /etc/my.cnf.d
-
+!includedir /etc/mariadb/10.6/my.cnf.d
components/database/mariadb-106/pkg5
New file
@@ -0,0 +1,33 @@
{
    "dependencies": [
        "SUNWcs",
        "compress/bzip2",
        "compress/xz",
        "compress/zstd",
        "library/libxml2",
        "library/lz4",
        "library/lzo",
        "library/pcre2",
        "library/security/cracklib",
        "library/security/openssl",
        "library/unixodbc",
        "library/zlib",
        "runtime/perl",
        "service/security/kerberos-5",
        "shell/bash",
        "shell/ksh93",
        "system/library",
        "system/library/g++-7-runtime",
        "system/library/gcc-7-runtime",
        "system/library/math",
        "system/library/security/gss",
        "web/curl"
    ],
    "fmris": [
        "database/mariadb-106",
        "database/mariadb-106/client",
        "database/mariadb-106/library",
        "database/mariadb-106/tests"
    ],
    "name": "mariadb"
}