Skip to content

Commit

Permalink
fix: acknowledge that oid can be null
Browse files Browse the repository at this point in the history
  • Loading branch information
gajus committed Jul 1, 2018
1 parent 5f94a9a commit 30a82d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types.js
Expand Up @@ -15,7 +15,7 @@ type FieldType = {
type QueryResultType<T> = {
+command: 'DELETE' | 'INSERT' | 'SELECT' | 'UPDATE',
+fields: $ReadOnlyArray<FieldType>,
+oid: number,
+oid: number | null,
+rowAsArray: boolean,
+rowCount: number,
+rows: $ReadOnlyArray<T>
Expand Down

0 comments on commit 30a82d0

Please sign in to comment.