Skip to content

Commit 73d6e1b

Browse files
committed
fix test
1 parent c243027 commit 73d6e1b

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/query/service/tests/it/servers/http/http_query_handlers.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ async fn test_simple_sql() -> Result<()> {
126126
assert_eq!(result.state, ExecuteStateKind::Succeeded, "{:?}", result);
127127
assert_eq!(result.next_uri, Some(final_uri.clone()), "{:?}", result);
128128
assert_eq!(result.data.len(), 10, "{:?}", result);
129-
assert_eq!(result.schema.len(), 11, "{:?}", result);
129+
assert_eq!(result.schema.len(), 12, "{:?}", result);
130130

131131
// get state
132132
let uri = make_state_uri(query_id);

src/query/service/tests/it/storages/testdata/columns_table.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,8 @@ DB.Table: 'system'.'columns', Table: columns-table_id:1, ver:0, Engine: SystemCo
9292
| "engine" | "information_schema" | "tables" | "String" | "VARCHAR" | "" | "" | "NO" | "" |
9393
| "engine" | "system" | "tables" | "String" | "VARCHAR" | "" | "" | "NO" | "" |
9494
| "engine" | "system" | "tables_with_history" | "String" | "VARCHAR" | "" | "" | "NO" | "" |
95+
| "engine_full" | "system" | "tables" | "String" | "VARCHAR" | "" | "" | "NO" | "" |
96+
| "engine_full" | "system" | "tables_with_history" | "String" | "VARCHAR" | "" | "" | "NO" | "" |
9597
| "entry" | "system" | "tracing" | "String" | "VARCHAR" | "" | "" | "NO" | "" |
9698
| "event_date" | "system" | "query_log" | "Date" | "DATE" | "" | "" | "NO" | "" |
9799
| "event_time" | "system" | "query_log" | "Timestamp" | "TIMESTAMP" | "" | "" | "NO" | "" |

0 commit comments

Comments
 (0)