20
20
#pragma once
21
21
22
22
#include < map>
23
+ #include < memory>
23
24
#include < string>
24
25
#include < vector>
25
26
@@ -35,10 +36,10 @@ class ICEBERG_EXPORT Table {
35
36
virtual ~Table () = default ;
36
37
37
38
// / \brief Return the full name for this table
38
- virtual std::string name () const = 0;
39
+ virtual const std::string& name () const = 0;
39
40
40
41
// / \brief Returns the UUID of the table
41
- virtual std::string uuid () const = 0;
42
+ virtual const std::string& uuid () const = 0;
42
43
43
44
// / \brief Refresh the current table metadata
44
45
virtual void Refresh () = 0;
@@ -47,25 +48,25 @@ class ICEBERG_EXPORT Table {
47
48
virtual const std::shared_ptr<Schema>& schema () const = 0;
48
49
49
50
// / \brief Return a map of schema for this table
50
- virtual std::map<int32_t , std::shared_ptr<Schema>> schemas () const = 0;
51
+ virtual const std::map<int32_t , std::shared_ptr<Schema>>& schemas () const = 0;
51
52
52
53
// / \brief Return the partition spec for this table
53
54
virtual const std::shared_ptr<PartitionSpec>& spec () const = 0;
54
55
55
56
// / \brief Return a map of partition specs for this table
56
- virtual std::map<int32_t , std::shared_ptr<PartitionSpec>> specs () const = 0;
57
+ virtual const std::map<int32_t , std::shared_ptr<PartitionSpec>>& specs () const = 0;
57
58
58
59
// / \brief Return the sort order for this table
59
60
virtual const std::shared_ptr<SortOrder>& sort_order () const = 0;
60
61
61
62
// / \brief Return a map of sort order IDs to sort orders for this table
62
- virtual std::map<int32_t , std::shared_ptr<SortOrder>> sort_orders () const = 0;
63
+ virtual const std::map<int32_t , std::shared_ptr<SortOrder>>& sort_orders () const = 0;
63
64
64
65
// / \brief Return a map of string properties for this table
65
- virtual std::map<std::string, std::string> properties () const = 0;
66
+ virtual const std::map<std::string, std::string>& properties () const = 0;
66
67
67
68
// / \brief Return the table's base location
68
- virtual std::string location () const = 0;
69
+ virtual const std::string& location () const = 0;
69
70
70
71
// / \brief Return the table's current snapshot
71
72
virtual const std::shared_ptr<Snapshot>& current_snapshot () const = 0;
@@ -75,21 +76,21 @@ class ICEBERG_EXPORT Table {
75
76
// /
76
77
// / \param snapshot_id the ID of the snapshot to get
77
78
// / \return the Snapshot with the given id
78
- virtual expected<std::shared_ptr<Snapshot>, Error > snapshot (
79
+ virtual expected<std::shared_ptr<Snapshot>, ErrorKind > snapshot (
79
80
int64_t snapshot_id) const = 0;
80
81
81
82
// / \brief Get the snapshots of this table
82
- virtual std::vector<std::shared_ptr<Snapshot>> snapshots () const = 0;
83
+ virtual const std::vector<std::shared_ptr<Snapshot>>& snapshots () const = 0;
83
84
84
85
// / \brief Get the snapshot history of this table
85
86
// /
86
87
// / \return a vector of history entries
87
- virtual std::vector<std::shared_ptr<HistoryEntry>> history () const = 0;
88
+ virtual const std::vector<std::shared_ptr<HistoryEntry>>& history () const = 0;
88
89
89
90
// / \brief Create a new table scan for this table
90
91
// /
91
92
// / Once a table scan is created, it can be refined to project columns and filter data.
92
- virtual std::shared_ptr <TableScan> NewScan () const = 0;
93
+ virtual std::unique_ptr <TableScan> NewScan () const = 0;
93
94
94
95
// / \brief Create a new append API to add files to this table and commit
95
96
virtual std::shared_ptr<AppendFiles> NewAppend () = 0;
0 commit comments