Skip to content

Commit 6bfe13f

Browse files
committed
rename ignore_field.rs -> attached_token.rs
1 parent 3fa3766 commit 6bfe13f

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed
File renamed without changes.

src/ast/helpers/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
// KIND, either express or implied. See the License for the
1515
// specific language governing permissions and limitations
1616
// under the License.
17-
pub mod ignore_field;
17+
pub mod attached_token;
1818
pub mod stmt_create_table;
1919
pub mod stmt_data_loading;

src/ast/query.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#[cfg(not(feature = "std"))]
1919
use alloc::{boxed::Box, vec::Vec};
2020

21-
use helpers::ignore_field::AttachedToken;
21+
use helpers::attached_token::AttachedToken;
2222
#[cfg(feature = "serde")]
2323
use serde::{Deserialize, Serialize};
2424

src/parser/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ use core::{
2424
fmt::{self, Display},
2525
str::FromStr,
2626
};
27-
use helpers::ignore_field::AttachedToken;
27+
use helpers::attached_token::AttachedToken;
2828

2929
use log::debug;
3030

0 commit comments

Comments
 (0)