fix: update comments (#5605)

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
pull/24376/head
Andrew Lamb 2022-09-09 17:11:47 -04:00 committed by GitHub
parent 282a9885b8
commit b2daaa7bed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 8 deletions

View File

@ -633,15 +633,15 @@ mod test {
/// Run a plan against the following input table as "t"
///
/// ```text
/// +-----------+-----------+-----------+--------------+------------+----------------------------+,
/// | f64_value | i64_value | u64_value | string_value | bool_value | time |,
/// +-----------+-----------+--------------+------------+----------------------------+,
/// | f64_value | i64_value | string_value | bool_value | time |,
/// +-----------+-----------+--------------+------------+----------------------------+,
/// | 2 | 20 | two | true | 1970-01-01 00:00:00.000001 |,
/// | 4 | 40 | four | false | 1970-01-01 00:00:00.000002 |,
/// | | | | 1970-01-01 00:00:00.000003 |,
/// | 1 | 10 | a_one | true | 1970-01-01 00:00:00.000004 |,
/// | 5 | 50 | z_five | false | 1970-01-01 00:00:00.000005 |,
/// | 3 | 30 | three | false | 1970-01-01 00:00:00.000006 |,
/// | 2 | 20 | 20 | two | true | 1970-01-01 00:00:00.000001 |,
/// | 4 | 40 | 40 | four | false | 1970-01-01 00:00:00.000002 |,
/// | | | | | | 1970-01-01 00:00:00.000003 |,
/// | 1 | 10 | 10 | a_one | true | 1970-01-01 00:00:00.000004 |,
/// | 5 | 50 | 50 | z_five | false | 1970-01-01 00:00:00.000005 |,
/// | 3 | 30 | 30 | three | false | 1970-01-01 00:00:00.000006 |,
/// +-----------+-----------+--------------+------------+----------------------------+,
/// ```
async fn run_plan(aggs: Vec<Expr>) -> Vec<String> {