Skip to content

Commit

Permalink
try without #[inline] to see wasm size
Browse files Browse the repository at this point in the history
  • Loading branch information
aqrln committed Feb 19, 2024
1 parent 58f6cf2 commit 9c695c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions query-engine/query-structure/src/record.rs
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ impl Record {
/// Extracts a `SelectionResult` from this `Record`.
/// `field_names`: Database names of the fields contained in this `Record`.
/// `selected_fields`: The selection to extract.
#[inline]
// #[inline]
pub fn extract_selection_result_from_db_name(
&self,
field_names: &[String],
Expand All @@ -193,7 +193,7 @@ impl Record {

/// Extracts a `SelectionResult` from this `Record` using Prisma field names rather than
/// database names.
#[inline]
// #[inline]
pub fn extract_selection_result_from_prisma_name(
&self,
field_names: &[String],
Expand Down

0 comments on commit 9c695c2

Please sign in to comment.