Skip to content

Commit

Permalink
docs: Update package names and MariaDB related things
Browse files Browse the repository at this point in the history
  • Loading branch information
dveeden committed Mar 21, 2024
1 parent de0a237 commit bccd3d2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 12 deletions.
10 changes: 5 additions & 5 deletions lib/DBD/mysql.pm
Original file line number Diff line number Diff line change
Expand Up @@ -1376,19 +1376,19 @@ against:
print "$dbh->{mysql_clientinfo}\n";
5.2.0-MariaDB
8.3.0
=item mysql_clientversion
print "$dbh->{mysql_clientversion}\n";
50200
80300
=item mysql_serverversion
print "$dbh->{mysql_serverversion}\n";
50200
80300
=item mysql_dbd_stats
Expand Down Expand Up @@ -1537,7 +1537,7 @@ character column, if this column is indexed, if you query that
column with the integer value not being quoted, it will not
use the index:
MariaDB [test]> explain select * from test where value0 = '3' \G
mysql> explain select * from test where value0 = '3' \G
*************************** 1. row ***************************
id: 1
select_type: SIMPLE
Expand All @@ -1551,7 +1551,7 @@ use the index:
Extra: Using index condition
1 row in set (0.00 sec)
MariaDB [test]> explain select * from test where value0 = 3
mysql> explain select * from test where value0 = 3
-> \G
*************************** 1. row ***************************
id: 1
Expand Down
11 changes: 4 additions & 7 deletions lib/DBD/mysql/INSTALL.pod
Original file line number Diff line number Diff line change
Expand Up @@ -204,15 +204,12 @@ To run the tests that ship with the module, you'll need access to a
running MySQL server. This can be running on localhost, but it can also
be on a remote machine.

On Fedora the process is as follows. Please note that Fedora actually
ships with MariaDB but not with MySQL. This is not a problem, it
will work just as well.
In this example we install and start a local server for running the
tests against.
On Fedora the process is as follows. In this example we install and
start a local server for running the tests against.

dnf -y install make gcc mariadb-devel mariadb-libs mariadb-server
dnf -y install make gcc community-mysql-devel community-mysql-libs community-mysql-server
dnf -y install "perl(Test::Deep)" "perl(Test::More)"
systemctl start mariadb.service
systemctl start mysqld.service


=head2 Environment Variables
Expand Down

0 comments on commit bccd3d2

Please sign in to comment.