diff --git a/test/sql/bind.result b/test/sql/bind.result index acb7f2a2d78f8b3ab9d8c717f546f76879e719c5..86126e86f89aa70ef47af5b8bd6219366ea6912e 100644 --- a/test/sql/bind.result +++ b/test/sql/bind.result @@ -78,11 +78,11 @@ execute('SELECT ?, ?, ?', {1, 2, 3}) --- - metadata: - name: '?' - type: UNSIGNED + type: INTEGER - name: '?' - type: UNSIGNED + type: INTEGER - name: '?' - type: UNSIGNED + type: INTEGER rows: - [1, 2, 3] ... @@ -108,11 +108,11 @@ execute('SELECT ?, :value1, @value2', parameters) --- - metadata: - name: '?' - type: UNSIGNED + type: INTEGER - name: :value1 - type: UNSIGNED + type: INTEGER - name: '@value2' - type: UNSIGNED + type: INTEGER rows: - [10, 11, 12] ... @@ -150,21 +150,21 @@ execute('SELECT :value3, ?, :value1, ?, ?, @value2, ?, :value3', parameters) --- - metadata: - name: :value3 - type: UNSIGNED + type: INTEGER - name: '?' - type: UNSIGNED + type: INTEGER - name: :value1 - type: UNSIGNED + type: INTEGER - name: '?' - type: UNSIGNED + type: INTEGER - name: '?' - type: UNSIGNED + type: INTEGER - name: '@value2' - type: UNSIGNED + type: INTEGER - name: '?' type: boolean - name: :value3 - type: UNSIGNED + type: INTEGER rows: - [1, 2, 3, 4, 5, 6, null, 1] ... @@ -193,9 +193,9 @@ execute('SELECT ? AS kek, ? AS kek2', {1, 2}) --- - metadata: - name: KEK - type: UNSIGNED + type: INTEGER - name: KEK2 - type: UNSIGNED + type: INTEGER rows: - [1, 2] ... @@ -244,7 +244,7 @@ execute('SELECT ? AS big_uint', {0xefffffffffffffff}) --- - metadata: - name: BIG_UINT - type: UNSIGNED + type: INTEGER rows: - [17293822569102704640] ... @@ -291,7 +291,7 @@ execute('SELECT ? ', {18446744073709551615ULL}) --- - metadata: - name: '?' - type: UNSIGNED + type: INTEGER rows: - [18446744073709551615] ...