Skip to content

Commit 3e7c5f0

Browse files
committed
Docs
1 parent ff7012c commit 3e7c5f0

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/index/create.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,9 +199,13 @@ use super::common::*;
199199
/// .to_owned();
200200
///
201201
/// assert_eq!(
202+
/// index.to_string(MysqlQueryBuilder),
203+
/// "CREATE INDEX `idx-character-area` ON `character` ((`size_h` * `size_w`))"
204+
/// );
205+
/// assert_eq!(
202206
/// index.to_string(PostgresQueryBuilder),
203207
/// r#"CREATE INDEX "idx-character-area" ON "character" (("size_h" * "size_w"))"#
204-
/// )
208+
/// );
205209
/// ```
206210
#[derive(Default, Debug, Clone)]
207211
pub struct IndexCreateStatement {

0 commit comments

Comments
 (0)