Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update to 2024 #824

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion benches/array.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use bitvec::vec::BitVec;
use criterion::*;
Expand Down
2 changes: 1 addition & 1 deletion benches/e2e.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use criterion::*;
use risinglight::Database;
Expand Down
2 changes: 1 addition & 1 deletion proto/build.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

extern crate prost_build;

Expand Down
2 changes: 1 addition & 1 deletion proto/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

#![allow(clippy::derive_partial_eq_without_eq)]

Expand Down
2 changes: 1 addition & 1 deletion src/array/bytes_array.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use std::borrow::Borrow;
use std::fmt::{Display, Write};
Expand Down
2 changes: 1 addition & 1 deletion src/array/data_chunk.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use std::fmt;
use std::ops::RangeBounds;
Expand Down
2 changes: 1 addition & 1 deletion src/array/data_chunk_builder.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use std::iter::IntoIterator;

Expand Down
2 changes: 1 addition & 1 deletion src/array/internal_ext.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

//! Provide utilities to access the internal states of the [`Array`].

Expand Down
2 changes: 1 addition & 1 deletion src/array/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use std::convert::TryFrom;
use std::fmt::Debug;
Expand Down
2 changes: 1 addition & 1 deletion src/array/ops.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

//! Array operations.

Expand Down
2 changes: 1 addition & 1 deletion src/array/primitive_array.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use std::borrow::Borrow;
use std::iter::FromIterator;
Expand Down
2 changes: 1 addition & 1 deletion src/array/shuffle_ext.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

//! Utilities to shuffle [`Array`] content.

Expand Down
2 changes: 1 addition & 1 deletion src/binder/copy.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use std::path::PathBuf;
use std::str::FromStr;
Expand Down
2 changes: 1 addition & 1 deletion src/binder/create_table.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use std::collections::HashSet;
use std::fmt;
Expand Down
2 changes: 1 addition & 1 deletion src/binder/delete.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use super::*;

Expand Down
2 changes: 1 addition & 1 deletion src/binder/drop.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use std::result::Result as RawResult;
use std::str::FromStr;
Expand Down
2 changes: 1 addition & 1 deletion src/binder/expr.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use rust_decimal::Decimal;

Expand Down
2 changes: 1 addition & 1 deletion src/binder/insert.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use super::*;
use crate::parser::Query;
Expand Down
2 changes: 1 addition & 1 deletion src/binder/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use std::collections::{HashMap, HashSet};
use std::hash::Hash;
Expand Down
2 changes: 1 addition & 1 deletion src/binder/select.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use super::*;
use crate::parser::{Expr, Query, SelectItem, SetExpr};
Expand Down
2 changes: 1 addition & 1 deletion src/binder/table.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use std::vec::Vec;

Expand Down
2 changes: 1 addition & 1 deletion src/catalog/column.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use pretty_xmlish::Pretty;
use serde::{Deserialize, Serialize};
Expand Down
2 changes: 1 addition & 1 deletion src/catalog/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use std::str::FromStr;
use std::sync::Arc;
Expand Down
2 changes: 1 addition & 1 deletion src/catalog/root.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use std::collections::HashMap;
use std::sync::{Arc, Mutex};
Expand Down
2 changes: 1 addition & 1 deletion src/catalog/schema.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use std::collections::HashMap;
use std::sync::Arc;
Expand Down
2 changes: 1 addition & 1 deletion src/catalog/table.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use std::collections::{BTreeMap, HashMap};

Expand Down
2 changes: 1 addition & 1 deletion src/db.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use std::sync::{Arc, Mutex};

Expand Down
2 changes: 1 addition & 1 deletion src/executor/copy_from_file.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use std::fs::File;
use std::io::BufReader;
Expand Down
2 changes: 1 addition & 1 deletion src/executor/copy_to_file.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use std::fs::File;
use std::path::PathBuf;
Expand Down
2 changes: 1 addition & 1 deletion src/executor/create.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use std::sync::Arc;

Expand Down
2 changes: 1 addition & 1 deletion src/executor/delete.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use std::sync::Arc;

Expand Down
2 changes: 1 addition & 1 deletion src/executor/drop.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use std::sync::Arc;

Expand Down
2 changes: 1 addition & 1 deletion src/executor/evaluator.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

//! Apply expressions on data chunks.

Expand Down
2 changes: 1 addition & 1 deletion src/executor/explain.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use futures::{future, stream};
use pretty_xmlish::PrettyConfig;
Expand Down
2 changes: 1 addition & 1 deletion src/executor/filter.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use super::*;
use crate::array::{ArrayImpl, DataChunk};
Expand Down
2 changes: 1 addition & 1 deletion src/executor/hash_agg.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use std::collections::HashMap;

Expand Down
2 changes: 1 addition & 1 deletion src/executor/hash_join.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use std::collections::{HashMap, HashSet};
use std::vec::Vec;
Expand Down
2 changes: 1 addition & 1 deletion src/executor/insert.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use std::sync::Arc;

Expand Down
2 changes: 1 addition & 1 deletion src/executor/internal.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.
use super::*;
use crate::array::{ArrayImpl, StringArray};
use crate::catalog::{TableRefId, CONTRIBUTORS_TABLE_ID};
Expand Down
2 changes: 1 addition & 1 deletion src/executor/limit.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use super::*;
use crate::array::DataChunk;
Expand Down
2 changes: 1 addition & 1 deletion src/executor/merge_join.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use std::vec::Vec;

Expand Down
2 changes: 1 addition & 1 deletion src/executor/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

//! # Execution Model
//!
Expand Down
2 changes: 1 addition & 1 deletion src/executor/nested_loop_join.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use std::vec::Vec;

Expand Down
2 changes: 1 addition & 1 deletion src/executor/order.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use std::cmp::Ordering;

Expand Down
2 changes: 1 addition & 1 deletion src/executor/projection.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use super::*;
use crate::array::DataChunk;
Expand Down
2 changes: 1 addition & 1 deletion src/executor/simple_agg.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use super::*;
use crate::array::ArrayImpl;
Expand Down
2 changes: 1 addition & 1 deletion src/executor/sort_agg.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use super::*;
use crate::array::DataChunkBuilder;
Expand Down
2 changes: 1 addition & 1 deletion src/executor/table_scan.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use std::sync::Arc;

Expand Down
2 changes: 1 addition & 1 deletion src/executor/top_n.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use std::cmp::Ordering;

Expand Down
2 changes: 1 addition & 1 deletion src/executor/values.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use super::*;
use crate::array::{DataChunk, DataChunkBuilder};
Expand Down
2 changes: 1 addition & 1 deletion src/executor/window.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use super::*;
use crate::array::DataChunkBuilder;
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

//! RisingLight -- an educational OLAP database.

Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

//! A simple interactive shell of the database.

Expand Down
2 changes: 1 addition & 1 deletion src/parser/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

//! The parser module directly uses the [`sqlparser`] crate
//! and re-exports its AST types.
Expand Down
2 changes: 1 addition & 1 deletion src/planner/cost.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

//! Cost functions to extract the best plan.

Expand Down
2 changes: 1 addition & 1 deletion src/planner/explain.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use std::fmt;

Expand Down
2 changes: 1 addition & 1 deletion src/planner/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use egg::{define_language, Id, Symbol};

Expand Down
2 changes: 1 addition & 1 deletion src/planner/optimizer.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use std::sync::LazyLock;

Expand Down
2 changes: 1 addition & 1 deletion src/planner/rules/agg.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use super::*;

Expand Down
2 changes: 1 addition & 1 deletion src/planner/rules/expr.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

//! Expression simplification rules and constant folding.

Expand Down
2 changes: 1 addition & 1 deletion src/planner/rules/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

//! Optimization rules and related program analyses.
//!
Expand Down
2 changes: 1 addition & 1 deletion src/planner/rules/order.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

//! Analyze whether the table is ordered by some keys.

Expand Down
2 changes: 1 addition & 1 deletion src/planner/rules/plan.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

//! Plan optimization rules.

Expand Down
2 changes: 1 addition & 1 deletion src/planner/rules/range.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

//! Range filter.

Expand Down
2 changes: 1 addition & 1 deletion src/planner/rules/rows.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

use std::collections::HashMap;

Expand Down
2 changes: 1 addition & 1 deletion src/planner/rules/schema.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 RisingLight Project Authors. Licensed under Apache-2.0.
// Copyright 2024 RisingLight Project Authors. Licensed under Apache-2.0.

//! Analyze the output schema of plans.

Expand Down
Loading
Loading