Skip to content

Commit 7753348

Browse files
authored
chore(license): bump copyright year 2023 -> 2024 (#26)
1 parent 8e58dcc commit 7753348

5 files changed

Lines changed: 9 additions & 26 deletions

File tree

src/builder.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* MIT License
33
*
4-
* Copyright (c) 2023 Firelink Data
4+
* Copyright (c) 2024 Firelink Data
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a copy
77
* of this software and associated documentation files (the "Software"), to deal
@@ -22,7 +22,7 @@
2222
* SOFTWARE.
2323
*
2424
* File created: 2023-11-21
25-
* Last updated: 2023-12-24
25+
* Last updated: 2024-02-17
2626
*/
2727

2828
use std::path::PathBuf;

src/builder_datatypes.rs

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* MIT License
33
*
4-
* Copyright (c) 2023 Firelink Data
4+
* Copyright (c) 2024 Firelink Data
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a copy
77
* of this software and associated documentation files (the "Software"), to deal
@@ -22,31 +22,14 @@
2222
* SOFTWARE.
2323
*
2424
* File created: 2023-11-21
25-
* Last updated: 2023-11-21
25+
* Last updated: 2024-02-17
2626
*/
2727

2828
use arrow2::array::MutablePrimitiveArray;
2929
use arrow2::types::NativeType;
3030

3131
use crate::builder::ColumnBuilder;
3232

33-
/*
34-
35-
"bool" => Ok(DataType::Boolean),
36-
"boolean" => Ok(DataType::Boolean),
37-
"i16" => Ok(DataType::Int16),
38-
"i32" => Ok(DataType::Int32),
39-
"i64" => Ok(DataType::Int64),
40-
"f16" => Ok(DataType::Float16),
41-
"f32" => Ok(DataType::Float32),
42-
"f64" => Ok(DataType::Float64),
43-
"utf8" => Ok(DataType::Utf8),
44-
"string" => Ok(DataType::Utf8),
45-
"lutf8" => Ok(DataType::LargeUtf8),
46-
"lstring" => Ok(DataType::LargeUtf8),
47-
48-
*/
49-
5033
pub(crate) struct ColumnBuilderType<T1: NativeType> {
5134
pub rows: MutablePrimitiveArray<T1>,
5235
}

src/logging.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* MIT License
33
*
4-
* Copyright (c) 2023 Firelink Data
4+
* Copyright (c) 2024 Firelink Data
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a copy
77
* of this software and associated documentation files (the "Software"), to deal

src/schema.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* MIT License
33
*
4-
* Copyright (c) 2023 Firelink Data
4+
* Copyright (c) 2024 Firelink Data
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a copy
77
* of this software and associated documentation files (the "Software"), to deal
@@ -22,7 +22,7 @@
2222
* SOFTWARE.
2323
*
2424
* File created: 2023-11-25
25-
* Last updated: 2023-12-14
25+
* Last updated: 2024-02-17
2626
*/
2727

2828
use arrow2::datatypes::{DataType, Field, Schema};

src/slicer.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* MIT License
33
*
4-
* Copyright (c) 2023 Firelink Data
4+
* Copyright (c) 2024 Firelink Data
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a copy
77
* of this software and associated documentation files (the "Software"), to deal
@@ -22,7 +22,7 @@
2222
* SOFTWARE.
2323
*
2424
* File created: 2023-12-11
25-
* Last updated: 2023-12-14
25+
* Last updated: 2024-02-17
2626
*/
2727

2828
use std::cmp;

0 commit comments

Comments
 (0)