Skip to content

Commit bccd3d2

Browse files
committed
docs: Update package names and MariaDB related things
1 parent de0a237 commit bccd3d2

File tree

2 files changed

+9
-12
lines changed

2 files changed

+9
-12
lines changed

lib/DBD/mysql.pm

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1376,19 +1376,19 @@ against:
13761376
13771377
print "$dbh->{mysql_clientinfo}\n";
13781378
1379-
5.2.0-MariaDB
1379+
8.3.0
13801380
13811381
=item mysql_clientversion
13821382
13831383
print "$dbh->{mysql_clientversion}\n";
13841384
1385-
50200
1385+
80300
13861386
13871387
=item mysql_serverversion
13881388
13891389
print "$dbh->{mysql_serverversion}\n";
13901390
1391-
50200
1391+
80300
13921392
13931393
=item mysql_dbd_stats
13941394
@@ -1537,7 +1537,7 @@ character column, if this column is indexed, if you query that
15371537
column with the integer value not being quoted, it will not
15381538
use the index:
15391539
1540-
MariaDB [test]> explain select * from test where value0 = '3' \G
1540+
mysql> explain select * from test where value0 = '3' \G
15411541
*************************** 1. row ***************************
15421542
id: 1
15431543
select_type: SIMPLE
@@ -1551,7 +1551,7 @@ use the index:
15511551
Extra: Using index condition
15521552
1 row in set (0.00 sec)
15531553
1554-
MariaDB [test]> explain select * from test where value0 = 3
1554+
mysql> explain select * from test where value0 = 3
15551555
-> \G
15561556
*************************** 1. row ***************************
15571557
id: 1

lib/DBD/mysql/INSTALL.pod

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -204,15 +204,12 @@ To run the tests that ship with the module, you'll need access to a
204204
running MySQL server. This can be running on localhost, but it can also
205205
be on a remote machine.
206206

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

213-
dnf -y install make gcc mariadb-devel mariadb-libs mariadb-server
210+
dnf -y install make gcc community-mysql-devel community-mysql-libs community-mysql-server
214211
dnf -y install "perl(Test::Deep)" "perl(Test::More)"
215-
systemctl start mariadb.service
212+
systemctl start mysqld.service
216213

217214

218215
=head2 Environment Variables

0 commit comments

Comments
 (0)