]> git.sur5r.net Git - openldap/commitdiff
fix previous commit; document aliasing and aliasing quotes configuration
authorPierangelo Masarati <ando@openldap.org>
Thu, 9 Jun 2005 09:45:02 +0000 (09:45 +0000)
committerPierangelo Masarati <ando@openldap.org>
Thu, 9 Jun 2005 09:45:02 +0000 (09:45 +0000)
doc/man/man5/slapd-sql.5
servers/slapd/back-sql/config.c

index d1cc4473543832d42cbf88cd413cbd97733a5e35..924acae12ab14ea5de2e6c87617d14c03325a73b 100644 (file)
@@ -207,7 +207,6 @@ is builtin in back-sql; see macro
 is set to 8192).
 This is \fIexperimental\fP and may change in future releases.
 
-.TP
 .TP
 .B strcast_func <SQL function name>
 Specifies the name of a function that converts a given value to a string
@@ -216,6 +215,7 @@ for strongly typed RDBMSes with little implicit casting (like PostgreSQL),
 when a literal string is specified.
 This is \fIexperimental\fP and may change in future releases.
 
+.TP
 .B concat_pattern <pattern>
 This statement defines the
 .B pattern 
@@ -235,6 +235,17 @@ Carefully check the documentation of your RDBMS or stay with the examples
 for supported ones.
 This is \fIexperimental\fP and may change in future releases.
 
+.TP
+.B aliasing_keyword <string>
+Define the aliasing keyword.  Some RDBMSes use the word "\fIAS\fP"
+(the default), others don't use any.
+
+.TP
+.B aliasing_quote <string>
+Define the quoting char of the aliasing keyword.  Some RDBMSes 
+don't require any (the default), others may require single 
+or double quotes.
+
 .TP
 .B has_ldapinfo_dn_ru { NO | yes }
 Explicitly inform the backend whether the dn_ru column
index 700f8cc1eef3e78b5502f93e0b282eed25c1c150..aa66ac02b73f78e90d59c140b1bd62b8047b42e1 100644 (file)
@@ -591,12 +591,12 @@ backsql_db_config(
                        BACKSQL_CHECK_SCHEMA( bi ) ? "yes" : "no",
                        0, 0 );
 
-       } else if ( !strcasecmp( argv[ 0 ], "aliasing" ) ) {
+       } else if ( !strcasecmp( argv[ 0 ], "aliasing_keyword" ) ) {
                if ( argc != 2 ) {
                        Debug( LDAP_DEBUG_TRACE,
                                "<==backsql_db_config (%s line %d): "
                                "missing arg "
-                               "in \"aliasing <string>\" directive\n",
+                               "in \"aliasing_keyword <string>\" directive\n",
                                fname, lineno, 0 );
                        return 1;
                }