Skip to content

Commit

Permalink
update package names
Browse files Browse the repository at this point in the history
  • Loading branch information
kmetin committed Sep 27, 2023
1 parent 315ba64 commit 7ce77ef
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Their schema definitions should be:

[source,yaml]
----
namespace: "com.people"
namespace: "org.example"
classes:
- name: Student
fields:
Expand All @@ -44,7 +44,7 @@ classes:

[source,yaml]
----
namespace: "com.rooms"
namespace: "org.example"
imports:
- people.yaml
classes:
Expand All @@ -58,7 +58,7 @@ classes:

[source,yaml]
----
namespace: "com.education"
namespace: "org.example"
imports:
- classroom.yaml
classes:
Expand Down Expand Up @@ -165,7 +165,7 @@ clc map entry-set --name students --show-type -f table

[source, java]
----
SqlResult result = sqlService.execute("SELECT this FROM students")
SqlResult result = sqlService.execute("SELECT this FROM students WHERE ")
for (SqlRow row : result) {
Student s = row.getObject("this");
System.out.println(s.getId())
Expand Down

0 comments on commit 7ce77ef

Please sign in to comment.