Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
ggevay committed Jan 2, 2024
1 parent ae67d41 commit a478f5f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/expr/src/refresh_schedule.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@
// the Business Source License, use of this software will be governed
// by the Apache License, Version 2.0.

use std::time::Duration;

use mz_repr::Timestamp;
use serde::{Deserialize, Serialize};
use std::time::Duration;

#[derive(Clone, Debug, Serialize, Deserialize, Eq, PartialEq)]
pub struct RefreshSchedule {
Expand Down
3 changes: 2 additions & 1 deletion src/sql/src/plan/with_options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,13 @@

//! Provides tooling to handle `WITH` options.

use std::time::Duration;

use mz_repr::adt::interval::Interval;
use mz_repr::{strconv, GlobalId};
use mz_sql_parser::ast::{Ident, KafkaBroker, RefreshOptionValue, ReplicaDefinition};
use mz_storage_types::connections::StringOrSecret;
use serde::{Deserialize, Serialize};
use std::time::Duration;

use crate::ast::{AstInfo, UnresolvedItemName, Value, WithOptionValue};
use crate::names::{ResolvedDataType, ResolvedItemName};
Expand Down

0 comments on commit a478f5f

Please sign in to comment.