Skip to content

Commit

Permalink
IGNITE-24039 Fixing code comment (#11756)
Browse files Browse the repository at this point in the history
  • Loading branch information
IgGusev authored Dec 18, 2024
1 parent ec897b2 commit 96b4a68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/_docs/perf-and-troubleshooting/sql-tuning.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ tab:Java[]
----
SqlFieldsQuery query = new SqlFieldsQuery("SELECT * FROM Person WHERE id > 10");
// Result set will be loaded lazily.
// Result set will be loaded eagerly.
query.setLazy(false);
----
tab:JDBC[]
Expand All @@ -107,7 +107,7 @@ tab:C#/.NET[]
----
var query = new SqlFieldsQuery("SELECT * FROM Person WHERE id > 10")
{
// Result set will be loaded lazily.
// Result set will be loaded eagerly.
Lazy = false
};
----
Expand Down

0 comments on commit 96b4a68

Please sign in to comment.