mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 08:47:17 +01:00
32 lines
833 B
Groff
32 lines
833 B
Groff
|
.\" Automatically generated by Pandoc 2.5
|
||
|
.\"
|
||
|
.TH "mariadb_dyncol_column_cmp_named" "3" "" "Version 3.2.2" "MariaDB Connector/C"
|
||
|
.hy
|
||
|
.SS Name
|
||
|
.PP
|
||
|
mariadb_dyncol_column_cmp_named \- Compare two column names
|
||
|
.SS Synopsis
|
||
|
.IP
|
||
|
.nf
|
||
|
\f[C]
|
||
|
#include <mariadb_dyncol.h>
|
||
|
|
||
|
int mariadb_dyncol_column_cmp_named(const MYSQL_LEX_STRING *s1,
|
||
|
const MYSQL_LEX_STRING *s2);
|
||
|
\f[R]
|
||
|
.fi
|
||
|
.SS Description
|
||
|
.PP
|
||
|
Compares two dynamic column keys represented as a pointer to a
|
||
|
\f[C]MYSQL_LEX_STRING\f[R] structure.
|
||
|
.SS Parameter
|
||
|
.IP \[bu] 2
|
||
|
\f[C]s1\f[R] \- First key
|
||
|
.IP \[bu] 2
|
||
|
\f[C]s2\f[R] \- Second key
|
||
|
.SS Return value
|
||
|
.PP
|
||
|
Returns an integer less than, equal to, or greater than zero if the
|
||
|
first bytes of \f[C]s1\f[R] is found, respectively, to be less than, to
|
||
|
match, or be greater than the first bytes of \f[C]s2\f[R].
|